Add app icons into both summary list and details pane. Also show list of all applications merged under a UID. Draw dates on chart axis, and avoid flashing policy sweeps when switching networks in detail mode. Bug: 5087283, 5038812 Change-Id: I1dcd03ca85b517f8726452af8a46b4be9b3d20f1
58 lines
2.0 KiB
XML
58 lines
2.0 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:paddingLeft="16dip"
|
|
android:paddingRight="16dip"
|
|
android:paddingTop="8dip"
|
|
android:paddingBottom="8dip"
|
|
android:columnCount="3">
|
|
|
|
<ImageView
|
|
android:id="@android:id/icon"
|
|
android:layout_width="48dip"
|
|
android:layout_height="48dip"
|
|
android:layout_rowSpan="2"
|
|
android:layout_marginRight="8dip"
|
|
android:scaleType="centerInside" />
|
|
|
|
<TextView
|
|
android:id="@android:id/title"
|
|
android:layout_width="0dip"
|
|
android:layout_gravity="fill_horizontal"
|
|
android:singleLine="true"
|
|
android:ellipsize="marquee"
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
<TextView
|
|
android:id="@android:id/summary"
|
|
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>
|