diff options
author | Michael Bestas <mikeioannina@gmail.com> | 2015-09-26 01:30:34 +0300 |
---|---|---|
committer | Michael Bestas <mikeioannina@cyanogenmod.org> | 2016-01-17 13:29:00 -0800 |
commit | f15ce7a7a91008b18556f37e311b44c5a0da0448 (patch) | |
tree | 8e7c5943b60cb2937315c86b5171383f5cff5893 /packages/SystemUI/res/drawable | |
parent | a7e5f923a651e519c8d55fbcf71ef26740b61e0e (diff) | |
download | frameworks_base-f15ce7a7a91008b18556f37e311b44c5a0da0448.zip frameworks_base-f15ce7a7a91008b18556f37e311b44c5a0da0448.tar.gz frameworks_base-f15ce7a7a91008b18556f37e311b44c5a0da0448.tar.bz2 |
SystemUI: Add battery saver tile (1/2)
* To be displayed on devices without perf profiles
Change-Id: Iff6920a0bb78e36e44590c1db880afcdcc6f78b3
Diffstat (limited to 'packages/SystemUI/res/drawable')
-rw-r--r-- | packages/SystemUI/res/drawable/ic_qs_battery_saver_off.xml | 26 | ||||
-rw-r--r-- | packages/SystemUI/res/drawable/ic_qs_battery_saver_on.xml | 26 |
2 files changed, 52 insertions, 0 deletions
diff --git a/packages/SystemUI/res/drawable/ic_qs_battery_saver_off.xml b/packages/SystemUI/res/drawable/ic_qs_battery_saver_off.xml new file mode 100644 index 0000000..0301872 --- /dev/null +++ b/packages/SystemUI/res/drawable/ic_qs_battery_saver_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="M16.67,4H15V2H9V4H7.33A1.33,1.33 0 0,0 6,5.33V20.67C6,21.4 6.6,22 7.33,22H16.67A1.33,1.33 0 0,0 18,20.67V5.33C18,4.6 17.4,4 16.67,4Z" /> +</vector> diff --git a/packages/SystemUI/res/drawable/ic_qs_battery_saver_on.xml b/packages/SystemUI/res/drawable/ic_qs_battery_saver_on.xml new file mode 100644 index 0000000..0e11796 --- /dev/null +++ b/packages/SystemUI/res/drawable/ic_qs_battery_saver_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="M16.67,4C17.4,4 18,4.6 18,5.33V20.67A1.33,1.33 0 0,1 16.67,22H7.33C6.6,22 6,21.4 6,20.67V5.33A1.33,1.33 0 0,1 7.33,4H9V2H15V4H16.67M16,14V12H13V9H11V12H8V14H11V17H13V14H16Z" /> +</vector> |