make dialog edittexts single line

This commit is contained in:
tibbi 2016-03-26 16:46:58 +01:00
parent 722326e8e6
commit c251c65d0f

View file

@ -14,7 +14,8 @@
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/activity_margin"/>
android:layout_marginBottom="@dimen/activity_margin"
android:singleLine="true"/>
<TextView
android:layout_width="wrap_content"
@ -25,7 +26,8 @@
android:id="@+id/artist"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/activity_margin"/>
android:layout_marginBottom="@dimen/activity_margin"
android:singleLine="true"/>
<TextView
android:layout_width="wrap_content"
@ -36,7 +38,8 @@
android:id="@+id/file_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/activity_margin"/>
android:layout_marginBottom="@dimen/activity_margin"
android:singleLine="true"/>
<TextView
android:layout_width="wrap_content"
@ -47,6 +50,7 @@
android:id="@+id/extension"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/activity_margin"/>
android:layout_marginBottom="@dimen/activity_margin"
android:singleLine="true"/>
</LinearLayout>