CustomSeekBarPreference: Align with other preferences

This is one of those OCD things where the seekbar text would never
align with other preferences. It just looks bad when you're looking
at a lot of preferences and the seekbar is pushed to the far right.

Change-Id: I0f0adfbc60c045e8a4fbdee7f2667b020e22f4ff
diff --git a/res/layout/preference_custom_seekbar.xml b/res/layout/preference_custom_seekbar.xml
index 576fa3f..a703f68 100644
--- a/res/layout/preference_custom_seekbar.xml
+++ b/res/layout/preference_custom_seekbar.xml
@@ -32,7 +32,6 @@
         android:minWidth="44dp"
         android:gravity="center"
         android:orientation="horizontal"
-        android:paddingEnd="12dp"
         android:paddingTop="4dp"
         android:paddingBottom="4dp">
         <TextView
@@ -40,7 +39,7 @@
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             android:textAlignment="center"
-            android:singleLine="true"
+            android:singleLine="false"
             android:ellipsize="end"
             android:textAppearance="@android:style/TextAppearance.Material.Body1"
             android:textColor="?android:attr/textColorSecondary"/>
@@ -61,7 +60,7 @@
                 android:layout_width="0dp"
                 android:layout_height="wrap_content"
                 android:layout_weight="1"
-                android:paddingStart="16dp"
+                android:paddingStart="12dp"
                 android:singleLine="true"
                 android:textAppearance="@android:style/TextAppearance.Material.Subhead"
                 android:textColor="?android:attr/textColorPrimary"
@@ -85,7 +84,7 @@
             <LinearLayout android:id="@+id/seekBarPrefBarContainer"
                 android:layout_gravity="center_vertical"
                 android:layout_width="match_parent"
-            android:layout_height="wrap_content" />
+                android:layout_height="wrap_content" />
         </FrameLayout>
     </LinearLayout>