Fix 2266119: Switch to using 2 lines for provider title and disable (hide) summary which isn't currently being used.
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>