summaryrefslogtreecommitdiffstats
path: root/res
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
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')
-rw-r--r--res/drawable/data_usage_bar.xml37
-rw-r--r--res/layout/data_usage_item.xml36
-rw-r--r--res/values/strings.xml2
3 files changed, 61 insertions, 14 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>
diff --git a/res/layout/data_usage_item.xml b/res/layout/data_usage_item.xml
index 6451e21..d709753 100644
--- a/res/layout/data_usage_item.xml
+++ b/res/layout/data_usage_item.xml
@@ -14,26 +14,34 @@
limitations under the License.
-->
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:minHeight="48dip"
- android:orientation="vertical">
+ android:padding="8dip"
+ android:columnCount="2">
+ <!-- TODO: consider using canShrink -->
<TextView
- android:id="@android:id/text1"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="6dip"
- android:layout_marginTop="6dip"
+ android:id="@android:id/title"
+ android:singleLine="true"
+ android:ellipsize="marquee"
+ android:layout_columnFlexibility="canStretch"
android:textAppearance="?android:attr/textAppearanceMedium" />
<TextView
- android:id="@android:id/text2"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="6dip"
- android:layout_marginBottom="6dip"
+ android:id="@android:id/summary"
+ android:layout_gravity="right"
+ android:layout_marginLeft="8dip"
android:textAppearance="?android:attr/textAppearanceSmall" />
-</LinearLayout>
+ <ProgressBar
+ android:id="@android:id/progress"
+ android:layout_height="12dip"
+ android:layout_columnSpan="2"
+ android:layout_gravity="fill_horizontal"
+ android:layout_marginTop="4dip"
+ android:max="100"
+ android:progressDrawable="@drawable/data_usage_bar"
+ style="?android:attr/progressBarStyleHorizontal" />
+
+</GridLayout>
diff --git a/res/values/strings.xml b/res/values/strings.xml
index b72dbae..f573181 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -3475,6 +3475,8 @@ found in the list of installed applications.</string>
<!-- Title of data usage item that represents all uninstalled applications. [CHAR LIMIT=48] -->
<string name="data_usage_uninstalled_apps">Removed apps</string>
+ <!-- Combination of total network bytes sent and received by an application. [CHAR LIMIT=NONE] -->
+ <string name="data_usage_received_sent"><xliff:g id="received" example="128KB">%1$s</xliff:g> received, <xliff:g id="sent" example="1.3GB">%2$s</xliff:g> sent</string>
<!-- Button at the bottom of the CryptKeeper screen to make an emergency call. -->
<string name="cryptkeeper_emergency_call">Emergency call</string>