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
48 lines
1.7 KiB
XML
48 lines
1.7 KiB
XML
<?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.
|
|
-->
|
|
|
|
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="8dip"
|
|
android:columnCount="2">
|
|
|
|
<!-- TODO: consider using canShrink -->
|
|
<TextView
|
|
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/summary"
|
|
android:layout_gravity="right"
|
|
android:layout_marginLeft="8dip"
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
<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>
|