summaryrefslogtreecommitdiffstats
path: root/packages/SystemUI/res/drawable
diff options
context:
space:
mode:
authorDave Kover <dkover@cyngn.com>2015-03-03 15:53:44 -0800
committerd34d <clark@cyngn.com>2015-10-27 17:48:50 -0700
commit05ce0a6f5651743add398556d557a5f4c40c2503 (patch)
tree89e5a01b7f1dc141bd27f578e7c0f771d30a6a11 /packages/SystemUI/res/drawable
parent16dd3f1a5b783aea854eec33b388272ca04d7e9f (diff)
downloadframeworks_base-05ce0a6f5651743add398556d557a5f4c40c2503.zip
frameworks_base-05ce0a6f5651743add398556d557a5f4c40c2503.tar.gz
frameworks_base-05ce0a6f5651743add398556d557a5f4c40c2503.tar.bz2
SystemUI: Expose values for themes.
Allow theming of volume panel separately from status. Allow status bar icons to be tinted. Expose battery meter base color. Expose status bar header elevation value. Add themeable ripple color for navigation button press. Change-Id: Ie3dbde82692a19927ba6c1da179e5d2f03391f6f
Diffstat (limited to 'packages/SystemUI/res/drawable')
-rw-r--r--packages/SystemUI/res/drawable/volume_dialog_background.xml2
-rw-r--r--packages/SystemUI/res/drawable/zen_mode_panel_background.xml24
2 files changed, 25 insertions, 1 deletions
diff --git a/packages/SystemUI/res/drawable/volume_dialog_background.xml b/packages/SystemUI/res/drawable/volume_dialog_background.xml
index f09c01b..8ac471f 100644
--- a/packages/SystemUI/res/drawable/volume_dialog_background.xml
+++ b/packages/SystemUI/res/drawable/volume_dialog_background.xml
@@ -19,4 +19,4 @@
<corners android:radius="@dimen/notification_material_rounded_rect_radius" />
-</shape> \ No newline at end of file
+</shape>
diff --git a/packages/SystemUI/res/drawable/zen_mode_panel_background.xml b/packages/SystemUI/res/drawable/zen_mode_panel_background.xml
new file mode 100644
index 0000000..a91520a
--- /dev/null
+++ b/packages/SystemUI/res/drawable/zen_mode_panel_background.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2015 The CyanogenMod Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+<shape xmlns:android="http://schemas.android.com/apk/res/android">
+ <solid android:color="@color/system_secondary_color" />
+ <corners
+ android:topLeftRadius="0dp"
+ android:topRightRadius="0dp"
+ android:bottomLeftRadius="@dimen/zen_mode_panel_radius"
+ android:bottomRightRadius="@dimen/zen_mode_panel_radius"/>
+</shape>