diff options
author | Jim Miller <jaggies@google.com> | 2011-06-28 12:58:14 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-06-28 12:58:14 -0700 |
commit | d1a22ec0a29573903dae347f4dcf5af711c414eb (patch) | |
tree | 7e81b82c42b9e14979d0f705d7d38f3727264967 /res/values | |
parent | 22559fcac9c36c9db3eef9ecbda19af592043a2d (diff) | |
parent | 212fc5650acb560307813ab16dfb31da014d3629 (diff) | |
download | packages_apps_settings-d1a22ec0a29573903dae347f4dcf5af711c414eb.zip packages_apps_settings-d1a22ec0a29573903dae347f4dcf5af711c414eb.tar.gz packages_apps_settings-d1a22ec0a29573903dae347f4dcf5af711c414eb.tar.bz2 |
Merge "Fix 4686480: Cleanup LockScreen settings"
Diffstat (limited to 'res/values')
-rw-r--r-- | res/values/styles.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/res/values/styles.xml b/res/values/styles.xml index 2e3c1d9..130fa03 100644 --- a/res/values/styles.xml +++ b/res/values/styles.xml @@ -126,13 +126,15 @@ </style> <style name="SecurityPreferenceButtonContainer" parent="@android:style/Holo.SegmentedButton"> - <item name="android:layout_width">wrap_content</item> + <item name="android:layout_width">match_parent</item> <item name="android:layout_height">wrap_content</item> + <item name="android:weightSum">2</item> <item name="android:dividerPadding">8dip</item> </style> <style name="SecurityPreferenceButton" parent="@android:style/Widget.Holo.Button.Borderless"> - <item name="android:layout_width">140dip</item> + <item name="android:layout_width">0dip</item> + <item name="android:layout_weight">1</item> <item name="android:layout_height">wrap_content</item> <item name="android:ellipsize">marquee</item> <item name="android:singleLine">true</item> |