diff options
author | Alan Viverette <alanv@google.com> | 2014-05-16 20:04:44 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-05-16 20:04:44 +0000 |
commit | 22fc9e4a240100747ee35f0878facf8dd331ca2b (patch) | |
tree | cfcb39580cbf9f3a03f399f32ed68bfbe8733d17 /core | |
parent | 3fce73a866e58232b484ca26b58b1394b0121b6a (diff) | |
parent | 8b41e02ae5c29cafb25a859b617c17fa21d2cb90 (diff) | |
download | frameworks_base-22fc9e4a240100747ee35f0878facf8dd331ca2b.zip frameworks_base-22fc9e4a240100747ee35f0878facf8dd331ca2b.tar.gz frameworks_base-22fc9e4a240100747ee35f0878facf8dd331ca2b.tar.bz2 |
Merge "Add drawable padding to check box and radio button styles"
Diffstat (limited to 'core')
-rw-r--r-- | core/res/res/values/styles_quantum.xml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/core/res/res/values/styles_quantum.xml b/core/res/res/values/styles_quantum.xml index a49b89a..d04bddf 100644 --- a/core/res/res/values/styles_quantum.xml +++ b/core/res/res/values/styles_quantum.xml @@ -427,7 +427,10 @@ please see styles_device_defaults.xml. <item name="paddingEnd">8dp</item> </style> - <style name="Widget.Quantum.CheckedTextView" parent="Widget.CheckedTextView"/> + <style name="Widget.Quantum.CheckedTextView" parent="Widget.CheckedTextView"> + <item name="drawablePadding">4dip</item> + </style> + <style name="Widget.Quantum.TextSelectHandle" parent="Widget.TextSelectHandle"/> <style name="Widget.Quantum.TextSuggestionsPopupWindow" parent="Widget.TextSuggestionsPopupWindow"/> <style name="Widget.Quantum.AbsListView" parent="Widget.AbsListView"/> @@ -441,10 +444,12 @@ please see styles_device_defaults.xml. <style name="Widget.Quantum.CompoundButton.CheckBox" parent="Widget.CompoundButton.CheckBox"> <item name="background">?attr/selectableItemBackground</item> + <item name="drawablePadding">4dip</item> </style> <style name="Widget.Quantum.CompoundButton.RadioButton" parent="Widget.CompoundButton.RadioButton"> <item name="background">?attr/selectableItemBackground</item> + <item name="drawablePadding">4dip</item> </style> <style name="Widget.Quantum.CompoundButton.Star" parent="Widget.CompoundButton.Star"> |