diff options
author | Alan Viverette <alanv@google.com> | 2014-09-23 18:14:54 -0700 |
---|---|---|
committer | Alan Viverette <alanv@google.com> | 2014-09-23 18:14:54 -0700 |
commit | f81f72ffed5ab29e5fa7921849313d8245ef98fa (patch) | |
tree | cd6f29b390b0850c7b3d0a6553ac8e4380a651a0 /res/drawable/preference_background.xml | |
parent | 3b04714bdf970eaad831edb3531253c87aced2bc (diff) | |
download | packages_apps_Settings-f81f72ffed5ab29e5fa7921849313d8245ef98fa.zip packages_apps_Settings-f81f72ffed5ab29e5fa7921849313d8245ef98fa.tar.gz packages_apps_Settings-f81f72ffed5ab29e5fa7921849313d8245ef98fa.tar.bz2 |
Fix background colors to point directly to theme attribute
BUG: 17520824
Change-Id: I77fcbc2a5535f4916053cf1668cbe2e432b2dc95
Diffstat (limited to 'res/drawable/preference_background.xml')
-rw-r--r-- | res/drawable/preference_background.xml | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/res/drawable/preference_background.xml b/res/drawable/preference_background.xml index f47bcf5..7f7b560 100644 --- a/res/drawable/preference_background.xml +++ b/res/drawable/preference_background.xml @@ -15,13 +15,8 @@ --> <inset xmlns:android="http://schemas.android.com/apk/res/android" - android:insetLeft="0dip" - android:insetTop="0dip" - android:insetRight="0dip" - android:insetBottom="0dip"> + android:inset="0dip"> - <shape android:shape="rectangle"> - <solid android:color="@color/preference_background_color" /> - </shape> + <color android:color="?android:attr/colorBackground" /> </inset> |