summaryrefslogtreecommitdiffstats
path: root/res/values
diff options
context:
space:
mode:
authorAndrew Lee <anwlee@google.com>2014-09-29 17:02:03 -0700
committerAndrew Lee <anwlee@google.com>2014-09-29 17:02:03 -0700
commit051fc79d173ab293d7f6c9ee2a56cdce067e2e11 (patch)
treebdddd7d56c10711ee4bf8fec26c68f651a4cad0d /res/values
parent5a853498a52dd249dda506dbee05c1b58281368d (diff)
downloadandroid_packages_apps_CellBroadcastReceiver-051fc79d173ab293d7f6c9ee2a56cdce067e2e11.tar.gz
android_packages_apps_CellBroadcastReceiver-051fc79d173ab293d7f6c9ee2a56cdce067e2e11.tar.bz2
android_packages_apps_CellBroadcastReceiver-051fc79d173ab293d7f6c9ee2a56cdce067e2e11.zip
Configure "Cell Broadcast Receiver" Material styles.
Bug: 17679475 Change-Id: I80884e007187df7f160da6383ce7e60f979883e1
Diffstat (limited to 'res/values')
-rw-r--r--res/values/colors.xml3
-rw-r--r--res/values/styles.xml8
2 files changed, 10 insertions, 1 deletions
diff --git a/res/values/colors.xml b/res/values/colors.xml
index f6aa332c..afa6eab2 100644
--- a/res/values/colors.xml
+++ b/res/values/colors.xml
@@ -21,5 +21,8 @@
<color name="unread_bgcolor">#ffffffff</color>
<color name="read_bgcolor">#ffeeeeee</color>
<color name="notification_color">#FFFF9800</color><!-- Orange 800 -->
+
+ <color name="cell_broadcast_color_primary">#ff263238</color>
+ <color name="cell_broadcast_color_primary_dark">#ff21272b</color>
</resources>
diff --git a/res/values/styles.xml b/res/values/styles.xml
index 2cdbd2db..51b92e3c 100644
--- a/res/values/styles.xml
+++ b/res/values/styles.xml
@@ -20,6 +20,12 @@
<resources>
<!-- This must be a fullscreen theme for the alarm to be able to turn the screen on. -->
- <style name="AlertFullScreenTheme" parent="android:Theme.Holo.Wallpaper.NoTitleBar" />
+ <style name="AlertFullScreenTheme" parent="android:Theme.Material.Wallpaper.NoTitleBar" />
+
+ <style name="CellBroadcastSettingsTheme" parent="android:Theme.Material.Light">
+ <item name="android:actionBarTheme">@android:style/ThemeOverlay.Material.Dark.ActionBar</item>
+ <item name="android:colorPrimary">@color/cell_broadcast_color_primary</item>
+ <item name="android:colorPrimaryDark">@color/cell_broadcast_color_primary_dark</item>
+ </style>
</resources>