Make single line edit text on search screens
This commit is contained in:
parent
dab97fdbf4
commit
de0a1b9135
2 changed files with 5 additions and 0 deletions
|
@ -27,6 +27,9 @@
|
||||||
android:id="@+id/SearchText"
|
android:id="@+id/SearchText"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
|
android:maxLines="1"
|
||||||
|
android:singleLine="true"
|
||||||
|
android:lines="1"
|
||||||
android:layout_weight="1"/>
|
android:layout_weight="1"/>
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
|
|
|
@ -36,6 +36,8 @@
|
||||||
android:layout_marginRight="@dimen/list_content_padding"
|
android:layout_marginRight="@dimen/list_content_padding"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:maxLines="1"
|
android:maxLines="1"
|
||||||
|
android:singleLine="true"
|
||||||
|
android:lines="1"
|
||||||
android:nextFocusLeft="@id/edit"
|
android:nextFocusLeft="@id/edit"
|
||||||
android:nextFocusUp="@id/edit"
|
android:nextFocusUp="@id/edit"
|
||||||
android:textColor="?android:textColorPrimary"
|
android:textColor="?android:textColorPrimary"
|
||||||
|
|
Loading…
Reference in a new issue