summaryrefslogtreecommitdiffstats
path: root/res/drawable-v22
diff options
context:
space:
mode:
authorAnnie Chin <afchin@google.com>2015-03-10 13:25:05 -0700
committerAnnie Chin <afchin@google.com>2015-03-10 17:32:42 -0700
commitafc6345166dbc34cb30d27649278e60a3b9b7469 (patch)
tree2e49a0a1906028f6bec75726bbeb01b19c1aff6f /res/drawable-v22
parent41c1673c6a36be985924a33b7a6155d8b7a4a665 (diff)
downloadandroid_packages_apps_DeskClock-afc6345166dbc34cb30d27649278e60a3b9b7469.tar.gz
android_packages_apps_DeskClock-afc6345166dbc34cb30d27649278e60a3b9b7469.tar.bz2
android_packages_apps_DeskClock-afc6345166dbc34cb30d27649278e60a3b9b7469.zip
Use different textappearance attributes for v22+
Bug: 19578202 Change-Id: I3543d8946ae1a30c2fd7572ebc9cb865bb25da45
Diffstat (limited to 'res/drawable-v22')
-rw-r--r--res/drawable-v22/timepicker_ampm.xml9
-rw-r--r--res/drawable-v22/timepicker_time.xml7
2 files changed, 16 insertions, 0 deletions
diff --git a/res/drawable-v22/timepicker_ampm.xml b/res/drawable-v22/timepicker_ampm.xml
new file mode 100644
index 000000000..df924055a
--- /dev/null
+++ b/res/drawable-v22/timepicker_ampm.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="utf-8"?>
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+ <item
+ android:state_selected="true"
+ android:color="@color/white" />
+ <item
+ android:alpha="?android:attr/disabledAlpha"
+ android:color="@color/white" />
+</selector>
diff --git a/res/drawable-v22/timepicker_time.xml b/res/drawable-v22/timepicker_time.xml
new file mode 100644
index 000000000..100473cc7
--- /dev/null
+++ b/res/drawable-v22/timepicker_time.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="utf-8"?>
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+ <item
+ android:state_selected="true"
+ android:color="?android:attr/colorAccent" />
+ <item android:color="@color/white" />
+</selector> \ No newline at end of file