summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Miller <jaggies@google.com>2010-04-02 18:47:17 -0700
committerJim Miller <jaggies@google.com>2010-04-05 16:53:10 -0700
commitfdceefd8a220a49192755c2a32e129915fb359e1 (patch)
tree182b081f2b16370675e8c34d5a21bf7008d3185b
parent9c50996b175a1ee4b0069cba5163310c0189ac36 (diff)
downloadframeworks_base-fdceefd8a220a49192755c2a32e129915fb359e1.zip
frameworks_base-fdceefd8a220a49192755c2a32e129915fb359e1.tar.gz
frameworks_base-fdceefd8a220a49192755c2a32e129915fb359e1.tar.bz2
Fix 2325549: Allow up to 4 lines of summary text in Settings
This fixes a number of screens in Settings (see the bug for examples). Though it seems like a scary change, it should be safe since the added line doesn't affect layout unless it's used, in which case the view is slightly taller. Change-Id: I13d04efadee19b407febabfae7825aedf66e8744
-rw-r--r--core/res/res/layout/preference.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/res/res/layout/preference.xml b/core/res/res/layout/preference.xml
index e1fa230..9bd6f1b 100644
--- a/core/res/res/layout/preference.xml
+++ b/core/res/res/layout/preference.xml
@@ -47,7 +47,7 @@
android:layout_below="@android:id/title"
android:layout_alignLeft="@android:id/title"
android:textAppearance="?android:attr/textAppearanceSmall"
- android:maxLines="2" />
+ android:maxLines="4" />
</RelativeLayout>