From c7dcb92a20d545bbb29dc67013d94f9d742fe6d5 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Thu, 12 Jul 2018 17:51:50 +0200 Subject: [PATCH] make SeekBarPreference format summary text in a standard way I fixed it by using the same style as a standard preference: * the summary text size was a bit too large * the summary text should be allowed to wrap closes #1450 --- app/src/main/res/layout/preference_seekbar.xml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/src/main/res/layout/preference_seekbar.xml b/app/src/main/res/layout/preference_seekbar.xml index b3b91d9a9..84a95b2ed 100644 --- a/app/src/main/res/layout/preference_seekbar.xml +++ b/app/src/main/res/layout/preference_seekbar.xml @@ -21,10 +21,8 @@ android:layout_below="@android:id/title" android:layout_alignLeft="@android:id/title" android:layout_alignStart="@android:id/title" - android:textAppearance="?attr/textAppearanceListItemSmall" + android:textAppearance="?attr/textAppearanceListItemSecondary" android:textColor="?android:attr/textColorSecondary" - android:singleLine="true" - android:ellipsize="marquee" android:fadingEdge="horizontal"/>