diff options
author | Winson Chung <winsonc@google.com> | 2012-09-13 16:36:41 -0700 |
---|---|---|
committer | Winson Chung <winsonc@google.com> | 2012-09-13 16:36:59 -0700 |
commit | eaa5ab01a122ceb907a2bead35077331d604021b (patch) | |
tree | 625ca24b49d01d9fd4f68fea5d5cefd9efe67b4f /packages/SystemUI/res/drawable | |
parent | dcd8c81bf4beb719888b6be1b9418303c9075938 (diff) | |
download | frameworks_base-eaa5ab01a122ceb907a2bead35077331d604021b.zip frameworks_base-eaa5ab01a122ceb907a2bead35077331d604021b.tar.gz frameworks_base-eaa5ab01a122ceb907a2bead35077331d604021b.tar.bz2 |
Updating assets, fixing Battery tile to show proper states.
Change-Id: I0df6d62f57e8034f17d6add31416b050af8a0c15
Diffstat (limited to 'packages/SystemUI/res/drawable')
-rw-r--r-- | packages/SystemUI/res/drawable/qs_sys_battery.xml | 29 | ||||
-rw-r--r-- | packages/SystemUI/res/drawable/qs_sys_battery_charging.xml | 29 |
2 files changed, 58 insertions, 0 deletions
diff --git a/packages/SystemUI/res/drawable/qs_sys_battery.xml b/packages/SystemUI/res/drawable/qs_sys_battery.xml new file mode 100644 index 0000000..dd36aa5 --- /dev/null +++ b/packages/SystemUI/res/drawable/qs_sys_battery.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* +** Copyright 2011, The Android Open Source 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. +*/ +--> + +<level-list xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:maxLevel="4" android:drawable="@drawable/ic_qs_battery_0" /> + <item android:maxLevel="15" android:drawable="@drawable/ic_qs_battery_15" /> + <item android:maxLevel="35" android:drawable="@drawable/ic_qs_battery_28" /> + <item android:maxLevel="49" android:drawable="@drawable/ic_qs_battery_43" /> + <item android:maxLevel="60" android:drawable="@drawable/ic_qs_battery_57" /> + <item android:maxLevel="75" android:drawable="@drawable/ic_qs_battery_71" /> + <item android:maxLevel="90" android:drawable="@drawable/ic_qs_battery_85" /> + <item android:maxLevel="100" android:drawable="@drawable/ic_qs_battery_100" /> +</level-list> diff --git a/packages/SystemUI/res/drawable/qs_sys_battery_charging.xml b/packages/SystemUI/res/drawable/qs_sys_battery_charging.xml new file mode 100644 index 0000000..cee5081 --- /dev/null +++ b/packages/SystemUI/res/drawable/qs_sys_battery_charging.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* +** Copyright 2011, The Android Open Source 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. +*/ +--> + +<level-list xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:maxLevel="4" android:drawable="@drawable/ic_qs_battery_charge_0" /> + <item android:maxLevel="15" android:drawable="@drawable/ic_qs_battery_charge_15" /> + <item android:maxLevel="35" android:drawable="@drawable/ic_qs_battery_charge_28" /> + <item android:maxLevel="49" android:drawable="@drawable/ic_qs_battery_charge_43" /> + <item android:maxLevel="60" android:drawable="@drawable/ic_qs_battery_charge_57" /> + <item android:maxLevel="75" android:drawable="@drawable/ic_qs_battery_charge_71" /> + <item android:maxLevel="90" android:drawable="@drawable/ic_qs_battery_charge_85" /> + <item android:maxLevel="100" android:drawable="@drawable/ic_qs_battery_charge_100" /> +</level-list> |