summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Miller <jaggies@google.com>2009-12-04 13:14:57 -0800
committerJim Miller <jaggies@google.com>2009-12-04 13:14:57 -0800
commit48edd6f7ee9dde6824256a98936f2514ad6e5d05 (patch)
treeb760fec384760a041566b380afc016f6884541a9
parent67bd5a43610ccd2ab616e647b7fffe0908603fb1 (diff)
downloadGoogleSubscribedFeedsProvider-eclair-sholes-release2.tar.gz
Fix 2266119: Switch to using 2 lines for provider title and disable (hide) summary which isn't currently being used.android-sdk-2.1_r1android-2.1_r2.1sandroid-2.1_r2.1p2android-2.1_r2.1pandroid-2.1_r2android-2.1_r1eclair-sholes-release2eclair-releaseeclair-passion-release
-rw-r--r--res/layout/provider_preference.xml5
1 files changed, 3 insertions, 2 deletions
diff --git a/res/layout/provider_preference.xml b/res/layout/provider_preference.xml
index 3daaf30..6bb7dfb 100644
--- a/res/layout/provider_preference.xml
+++ b/res/layout/provider_preference.xml
@@ -40,7 +40,7 @@
<TextView android:id="@+android:id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:singleLine="true"
+ android:maxLines="2"
android:textAppearance="?android:attr/textAppearanceMedium" />
<TextView android:id="@+android:id/summary"
@@ -49,7 +49,8 @@
android:layout_below="@android:id/title"
android:layout_alignLeft="@android:id/title"
android:textAppearance="?android:attr/textAppearanceSmall"
- android:maxLines="2" />
+ android:maxLines="2"
+ android:visibility="gone" />
</RelativeLayout>