diff options
author | d34d <clark@cyngn.com> | 2016-04-29 16:49:33 -0700 |
---|---|---|
committer | Gerrit Code Review <gerrit@cyanogenmod.org> | 2016-05-05 14:00:21 -0700 |
commit | e4886a668f6fc7f04fa2c9e6de28c5e2e9f17d59 (patch) | |
tree | cbdce1fffa8822fca52f35c1ce49ba021b0826a7 /cm/res | |
parent | 9ff5ea9cea1938ca39eae6664f7a9ec3d12f7afc (diff) | |
download | vendor_cmsdk-e4886a668f6fc7f04fa2c9e6de28c5e2e9f17d59.zip vendor_cmsdk-e4886a668f6fc7f04fa2c9e6de28c5e2e9f17d59.tar.gz vendor_cmsdk-e4886a668f6fc7f04fa2c9e6de28c5e2e9f17d59.tar.bz2 |
QS: Make themes a first class citizen again
Change-Id: Icd397a2ddd730ae525233b66288fde9a6798c221
TICKET: CYNGNOS-2670
Diffstat (limited to 'cm/res')
-rw-r--r-- | cm/res/res/drawable/ic_qs_themes.xml | 28 | ||||
-rw-r--r-- | cm/res/res/values/strings.xml | 4 | ||||
-rw-r--r-- | cm/res/res/values/symbols.xml | 5 |
3 files changed, 37 insertions, 0 deletions
diff --git a/cm/res/res/drawable/ic_qs_themes.xml b/cm/res/res/drawable/ic_qs_themes.xml new file mode 100644 index 0000000..f8c6cfb --- /dev/null +++ b/cm/res/res/drawable/ic_qs_themes.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (c) 2016 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. +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="64dp" + android:height="64dp" + android:viewportWidth="24" + android:viewportHeight="24"> + + <path + android:fillColor="#FFFFFFFF" + android:pathData="M21,5V3h-2v6c0,0.6-0.4,1-1,1s-1-0.4-1-1V3h-2v10c0,0.6-0.4,1-1,1s-1-0.4-1-1V7c0-0.6-0.4-1-1-1s-1,0.4-1,1v4 +c0,0.6-0.4,1-1,1s-1-0.4-1-1V8c0-0.6-0.4-1-1-1S7,7.4,7,8v8c0,0.6-0.4,1-1,1s-1-0.4-1-1V3H3v2H2v4h1v10c0,1.1,0.9,2,2,2h14 +c1.1,0,2-0.9,2-2V9h1V5H21z" /> +</vector>
\ No newline at end of file diff --git a/cm/res/res/values/strings.xml b/cm/res/res/values/strings.xml index 2c57e00..1551adf 100644 --- a/cm/res/res/values/strings.xml +++ b/cm/res/res/values/strings.xml @@ -218,4 +218,8 @@ <string name="permlab_observe_audio_sessions">observe audio session changes</string> <string name="permdesc_observe_audio_sessions">Allows an app to observe audio streams being created and destroyed.</string> + <!-- QuickSettings: Themes tile --> + <string name="qs_themes_label">Themes</string> + <string name="qs_themes_content_description">Customize your theme</string> + </resources> diff --git a/cm/res/res/values/symbols.xml b/cm/res/res/values/symbols.xml index fa31456..767f354 100644 --- a/cm/res/res/values/symbols.xml +++ b/cm/res/res/values/symbols.xml @@ -113,4 +113,9 @@ <!-- External CM specific core services --> <java-symbol type="array" name="config_externalCMServices" /> + + <!-- Themes tile --> + <java-symbol type="string" name="qs_themes_label" /> + <java-symbol type="string" name="qs_themes_content_description" /> + <java-symbol type="drawable" name="ic_qs_themes" /> </resources> |