diff options
author | Alan Viverette <alanv@google.com> | 2014-05-14 20:01:08 -0700 |
---|---|---|
committer | Alan Viverette <alanv@google.com> | 2014-05-14 20:01:08 -0700 |
commit | 8b41e02ae5c29cafb25a859b617c17fa21d2cb90 (patch) | |
tree | 192015d93fb579de7e906497d31d785235ef616e /core | |
parent | a6464b38fc3c807abbce0cb4e7b542b2dd34111c (diff) | |
download | frameworks_base-8b41e02ae5c29cafb25a859b617c17fa21d2cb90.zip frameworks_base-8b41e02ae5c29cafb25a859b617c17fa21d2cb90.tar.gz frameworks_base-8b41e02ae5c29cafb25a859b617c17fa21d2cb90.tar.bz2 |
Add drawable padding to check box and radio button styles
Change-Id: Ic7134c0874980e2f0f0ff294fff2c64dcdd73af2
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 e693673..5c5f223 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"> |