| <?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:paddingTop="4dp" |
| android:orientation="vertical" |
| android:visibility="gone"> |
| |
| <LinearLayout |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:layout_marginStart="?android:attr/listPreferredItemPaddingStart" |
| android:layout_marginEnd="?android:attr/listPreferredItemPaddingEnd" |
| android:layout_marginBottom="16dip" |
| android:orientation="horizontal"> |
| |
| <ImageView |
| android:id="@+id/app_icon" |
| android:layout_width="@android:dimen/app_icon_size" |
| android:layout_height="@android:dimen/app_icon_size" |
| android:layout_marginEnd="8dip" |
| android:scaleType="centerInside" |
| android:contentDescription="@null" /> |
| |
| <LinearLayout |
| android:layout_width="0dip" |
| android:layout_height="wrap_content" |
| android:layout_weight="1" |
| android:layout_marginTop="8dip" |
| android:orientation="vertical"> |
| |
| <LinearLayout |
| android:id="@+id/app_titles" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:orientation="vertical" |
| android:paddingBottom="4dip" |
| android:textAlignment="viewStart" /> |
| |
| <LinearLayout |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content"> |
| <TextView |
| android:id="@+id/app_title" |
| android:layout_width="0dp" |
| android:layout_height="wrap_content" |
| android:layout_weight="1" |
| android:singleLine="true" |
| android:ellipsize="marquee" |
| android:text="@string/data_usage_label_foreground" |
| android:textAppearance="@*android:style/TextAppearance.DeviceDefault.Body1" |
| android:textColor="?android:attr/textColorSecondary" |
| android:textAlignment="viewStart" /> |
| <TextView |
| android:id="@+id/app_foreground" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:textAppearance="@*android:style/TextAppearance.DeviceDefault.Body1" |
| android:textColor="?android:attr/textColorSecondary" |
| android:textAlignment="viewEnd" /> |
| </LinearLayout> |
| |
| <LinearLayout |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content"> |
| <TextView |
| android:id="@+id/app_title" |
| android:layout_width="0dp" |
| android:layout_height="wrap_content" |
| android:layout_weight="1" |
| android:singleLine="true" |
| android:ellipsize="marquee" |
| android:text="@string/data_usage_label_background" |
| android:textAppearance="@*android:style/TextAppearance.DeviceDefault.Body1" |
| android:textColor="?android:attr/textColorSecondary" |
| android:textAlignment="viewStart" /> |
| <TextView |
| android:id="@+id/app_background" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:textAppearance="@*android:style/TextAppearance.DeviceDefault.Body1" |
| android:textColor="?android:attr/textColorSecondary" |
| android:textAlignment="viewEnd" /> |
| </LinearLayout> |
| |
| </LinearLayout> |
| |
| </LinearLayout> |
| |
| <LinearLayout |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:layout_marginStart="?android:attr/listPreferredItemPaddingStart" |
| android:layout_marginEnd="?android:attr/listPreferredItemPaddingEnd" |
| android:layout_marginBottom="16dip" |
| android:orientation="horizontal"> |
| <Space |
| android:layout_width="0dp" |
| android:layout_height="0dp" |
| android:layout_weight="0.5" /> |
| <Button |
| android:id="@+id/app_settings" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:layout_weight="0.5" |
| android:text="@string/data_usage_app_settings" /> |
| </LinearLayout> |
| |
| <LinearLayout |
| android:id="@+id/app_switches" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:orientation="vertical" |
| android:showDividers="beginning|middle" |
| android:divider="?android:attr/listDivider" /> |
| |
| </LinearLayout> |