From fdceefd8a220a49192755c2a32e129915fb359e1 Mon Sep 17 00:00:00 2001 From: Jim Miller Date: Fri, 2 Apr 2010 18:47:17 -0700 Subject: [PATCH] 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 --- core/res/res/layout/preference.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/res/res/layout/preference.xml b/core/res/res/layout/preference.xml index e1fa230cf0c9e..9bd6f1b9f7e2e 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" />