| <?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. |
| --> |
| |
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| android:id="@+id/app_detail" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:orientation="vertical" |
| android:visibility="gone"> |
| |
| <LinearLayout |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:layout_marginLeft="?android:attr/listPreferredItemPaddingLeft" |
| android:layout_marginRight="?android:attr/listPreferredItemPaddingRight" |
| android:orientation="horizontal"> |
| |
| <LinearLayout |
| android:layout_width="0dip" |
| android:layout_height="wrap_content" |
| android:layout_weight="1" |
| android:layout_marginTop="8dip" |
| android:layout_marginRight="8dip" |
| android:orientation="vertical"> |
| |
| <ImageView |
| android:id="@+id/app_icon" |
| android:layout_width="48dip" |
| android:layout_height="48dip" |
| android:scaleType="centerInside" |
| android:contentDescription="@null" /> |
| |
| <LinearLayout |
| android:id="@+id/app_titles" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:layout_marginTop="8dip" |
| android:orientation="vertical" /> |
| |
| <TextView |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:layout_marginTop="8dip" |
| android:textColor="#d88d3a" |
| android:text="@string/data_usage_label_foreground" /> |
| <TextView |
| android:id="@+id/app_foreground" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:textColor="#d88d3a" /> |
| |
| <TextView |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:layout_marginTop="8dip" |
| android:text="@string/data_usage_label_background" /> |
| <TextView |
| android:id="@+id/app_background" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" /> |
| |
| </LinearLayout> |
| |
| <com.android.settings.widget.PieChartView |
| android:id="@+id/app_pie_chart" |
| android:layout_width="160dip" |
| android:layout_height="160dip" /> |
| |
| </LinearLayout> |
| |
| <Button |
| android:id="@+id/app_settings" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:layout_marginLeft="?android:attr/listPreferredItemPaddingLeft" |
| android:layout_marginRight="?android:attr/listPreferredItemPaddingRight" |
| android:layout_marginTop="16dip" |
| android:layout_marginBottom="16dip" |
| android:text="@string/data_usage_app_settings" /> |
| |
| <LinearLayout |
| android:id="@+id/app_switches" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:orientation="vertical" /> |
| |
| </LinearLayout> |