diff options
author | Dave Kover <dkover@cyngn.com> | 2015-03-05 18:28:13 -0800 |
---|---|---|
committer | Steve Kondik <steve@cyngn.com> | 2015-10-26 16:09:12 -0700 |
commit | 184b72bd80ef73b230cd6626a7a7d94d6fdbe743 (patch) | |
tree | 8ce655be9ba0522dcecfb0ffc073e0bde6b697ec /packages/SystemUI/res/drawable | |
parent | 22d3df79c0e1bfe58d8228f7a3ccf6b3dd9721d5 (diff) | |
download | frameworks_base-184b72bd80ef73b230cd6626a7a7d94d6fdbe743.zip frameworks_base-184b72bd80ef73b230cd6626a7a7d94d6fdbe743.tar.gz frameworks_base-184b72bd80ef73b230cd6626a7a7d94d6fdbe743.tar.bz2 |
SystemUI: Allow seperate theming of guts icons
Allows themes to assign different drawables for the notification
guts instead of using drawables used in other views.
Change-Id: I5f92e15de4aabde732e7cb89fd02432f32e8f329
Diffstat (limited to 'packages/SystemUI/res/drawable')
-rw-r--r-- | packages/SystemUI/res/drawable/notification_guts_ic_ringer_mute.xml | 20 | ||||
-rw-r--r-- | packages/SystemUI/res/drawable/notification_guts_ic_settings.xml | 20 |
2 files changed, 40 insertions, 0 deletions
diff --git a/packages/SystemUI/res/drawable/notification_guts_ic_ringer_mute.xml b/packages/SystemUI/res/drawable/notification_guts_ic_ringer_mute.xml new file mode 100644 index 0000000..63c8315 --- /dev/null +++ b/packages/SystemUI/res/drawable/notification_guts_ic_ringer_mute.xml @@ -0,0 +1,20 @@ +<?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. +--> +<layer-list + xmlns:android="http://schemas.android.com/apk/res/android" > + <item android:drawable="@drawable/ic_volume_ringer_mute" /> +</layer-list> diff --git a/packages/SystemUI/res/drawable/notification_guts_ic_settings.xml b/packages/SystemUI/res/drawable/notification_guts_ic_settings.xml new file mode 100644 index 0000000..312a55f --- /dev/null +++ b/packages/SystemUI/res/drawable/notification_guts_ic_settings.xml @@ -0,0 +1,20 @@ +<?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. +--> +<layer-list + xmlns:android="http://schemas.android.com/apk/res/android" > + <item android:drawable="@drawable/ic_settings" /> +</layer-list> |