Make single line edit text on search screens

This commit is contained in:
Victor Shcherb 2015-07-06 12:37:17 +03:00
parent dab97fdbf4
commit de0a1b9135
2 changed files with 5 additions and 0 deletions

View file

@ -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

View file

@ -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"