diff options
author | Lifu Tang <lifu@google.com> | 2013-08-23 15:18:38 -0700 |
---|---|---|
committer | Lifu Tang <lifu@google.com> | 2013-08-23 15:32:25 -0700 |
commit | 3a15402243563876b2764ec616ae7f0a5505a97f (patch) | |
tree | 35b7bd3c4efd2272623f8ffbc1eb29a82dd1138d | |
parent | be9ebb4436678ab5afecccc8a4bb7b9be6af370a (diff) | |
download | packages_apps_Settings-3a15402243563876b2764ec616ae7f0a5505a97f.zip packages_apps_Settings-3a15402243563876b2764ec616ae7f0a5505a97f.tar.gz packages_apps_Settings-3a15402243563876b2764ec616ae7f0a5505a97f.tar.bz2 |
Allows multi-line message on small-screen devices
Change-Id: Ief7e152165059cea165f1271ab27a8a42537db8f
-rw-r--r-- | res/layout/location_list_no_item.xml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/res/layout/location_list_no_item.xml b/res/layout/location_list_no_item.xml index 864b2e4..5489a50 100644 --- a/res/layout/location_list_no_item.xml +++ b/res/layout/location_list_no_item.xml @@ -25,7 +25,7 @@ <RelativeLayout android:layout_width="match_parent" - android:layout_height="match_parent" + android:layout_height="wrap_content" android:layout_marginStart="15dip" android:layout_marginEnd="6dip" android:layout_marginTop="6dip" @@ -35,11 +35,9 @@ <TextView android:id="@+android:id/title" android:gravity="center" android:layout_width="match_parent" - android:layout_height="match_parent" - android:singleLine="true" + android:layout_height="wrap_content" android:textAppearance="?android:attr/textAppearanceSmall" - android:ellipsize="marquee" - android:fadingEdge="horizontal" /> + android:textColor="?android:attr/textColorSecondary" /> </RelativeLayout> |