diff options
author | Keith Mok <kmok@cyngn.com> | 2016-02-04 11:10:22 -0800 |
---|---|---|
committer | Gerrit Code Review <gerrit@cyanogenmod.org> | 2016-02-11 17:06:13 -0800 |
commit | 4522c9ea9b579a33c1a3ebb9fd3b113a637ffbd7 (patch) | |
tree | c2604414a542a0c8b9c051974fa796a1f8cb857c /packages/SystemUI/res/drawable | |
parent | ef5b0f47e3034eeafc7eb89af6e1edb9e4c20668 (diff) | |
download | frameworks_base-4522c9ea9b579a33c1a3ebb9fd3b113a637ffbd7.zip frameworks_base-4522c9ea9b579a33c1a3ebb9fd3b113a637ffbd7.tar.gz frameworks_base-4522c9ea9b579a33c1a3ebb9fd3b113a637ffbd7.tar.bz2 |
SystemUI: add caffeine qs tile (1/2)
Change-Id: I5d4aa97ae63fc0bcc40f0fa7d9305efbba091029
Diffstat (limited to 'packages/SystemUI/res/drawable')
-rw-r--r-- | packages/SystemUI/res/drawable/ic_qs_caffeine_off.xml | 26 | ||||
-rw-r--r-- | packages/SystemUI/res/drawable/ic_qs_caffeine_on.xml | 26 |
2 files changed, 52 insertions, 0 deletions
diff --git a/packages/SystemUI/res/drawable/ic_qs_caffeine_off.xml b/packages/SystemUI/res/drawable/ic_qs_caffeine_off.xml new file mode 100644 index 0000000..59d52e8 --- /dev/null +++ b/packages/SystemUI/res/drawable/ic_qs_caffeine_off.xml @@ -0,0 +1,26 @@ +<?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. +--> +<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="#4DFFFFFF" + android:pathData="M2,21H20V19H2M20,8H18V5H20M20,3H4V13A4,4 0 0,0 8,17H14A4,4 0 0,0 18,13V10H20A2,2 0 0,0 22,8V5C22,3.89 21.1,3 20,3Z" /> +</vector> diff --git a/packages/SystemUI/res/drawable/ic_qs_caffeine_on.xml b/packages/SystemUI/res/drawable/ic_qs_caffeine_on.xml new file mode 100644 index 0000000..48b6773 --- /dev/null +++ b/packages/SystemUI/res/drawable/ic_qs_caffeine_on.xml @@ -0,0 +1,26 @@ +<?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. +--> +<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="M2,21H20V19H2M20,8H18V5H20M20,3H4V13A4,4 0 0,0 8,17H14A4,4 0 0,0 18,13V10H20A2,2 0 0,0 22,8V5C22,3.89 21.1,3 20,3Z" /> +</vector> |