summaryrefslogtreecommitdiffstats
path: root/res/drawable
diff options
context:
space:
mode:
authorJeff Sharkey <jsharkey@android.com>2011-07-17 20:31:40 -0700
committerJeff Sharkey <jsharkey@android.com>2011-07-17 20:31:54 -0700
commit2412b0f2489d5fde811d802b39a0a00d861b5ddf (patch)
tree2863b38d2cc6d6e463b8c614365f0601f517cf4c /res/drawable
parentabc95ee82295b82ad0475a8b4c55a5196a5f014a (diff)
downloadpackages_apps_Settings-2412b0f2489d5fde811d802b39a0a00d861b5ddf.zip
packages_apps_Settings-2412b0f2489d5fde811d802b39a0a00d861b5ddf.tar.gz
packages_apps_Settings-2412b0f2489d5fde811d802b39a0a00d861b5ddf.tar.bz2
Data usage app bars, draw estimated cycle usage.
Show application list with normalized percentage data usage as horizontal bar chart. Draw estimated usage for remainder of cycle to reinforce log scale, and break out received/sent when showing app details. Bug: 5038591, 4948713, 4818025 Change-Id: Ib71e73d4f692adc7fe8ae87edd0cec2a8f3976d3
Diffstat (limited to 'res/drawable')
-rw-r--r--res/drawable/data_usage_bar.xml37
1 files changed, 37 insertions, 0 deletions
diff --git a/res/drawable/data_usage_bar.xml b/res/drawable/data_usage_bar.xml
new file mode 100644
index 0000000..96f1cae
--- /dev/null
+++ b/res/drawable/data_usage_bar.xml
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 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.
+-->
+
+<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
+ <item android:id="@android:id/background">
+ <shape>
+ <solid android:color="#ff28262c" />
+ </shape>
+ </item>
+ <item android:id="@android:id/secondaryProgress">
+ <clip>
+ <shape>
+ <solid android:color="#c050ade5" />
+ </shape>
+ </clip>
+ </item>
+ <item android:id="@android:id/progress">
+ <clip>
+ <shape>
+ <solid android:color="#c050ade5" />
+ </shape>
+ </clip>
+ </item>
+</layer-list>