blob: 960289882a2531e7830e50e796f93d345ee1138e [file] [log] [blame]
Jeff Sharkey8a503642011-06-10 13:31:21 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2011 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
18 android:layout_width="match_parent"
19 android:layout_height="wrap_content"
20 android:orientation="vertical">
21
Jeff Sharkey2af35fb2011-06-24 17:30:27 -070022 <FrameLayout
23 android:id="@+id/network_switches_container"
Jeff Sharkey8a503642011-06-10 13:31:21 -070024 android:layout_width="match_parent"
Jeff Sharkey2af35fb2011-06-24 17:30:27 -070025 android:layout_height="wrap_content">
26 <LinearLayout
27 android:id="@+id/network_switches"
28 android:layout_width="match_parent"
29 android:layout_height="wrap_content"
30 android:orientation="vertical"
31 android:showDividers="middle|end"
32 android:divider="?android:attr/listDivider" />
33 </FrameLayout>
Jeff Sharkey8a503642011-06-10 13:31:21 -070034
Jeff Sharkeyd360e5e2011-07-26 19:30:26 -070035 <include layout="@layout/data_usage_cycles" />
36 <include layout="@layout/data_usage_chart" />
37
38 <TextView
39 android:id="@+id/usage_summary"
Jeff Sharkey8a503642011-06-10 13:31:21 -070040 android:layout_width="match_parent"
41 android:layout_height="wrap_content"
Jeff Sharkey8a503642011-06-10 13:31:21 -070042 android:paddingLeft="16dip"
Jeff Sharkeyd360e5e2011-07-26 19:30:26 -070043 android:paddingRight="16dip"
44 android:paddingTop="8dip"
45 android:paddingBottom="8dip"
46 android:textAppearance="?android:attr/textAppearanceSmall" />
Jeff Sharkey8a503642011-06-10 13:31:21 -070047
Jeff Sharkeye2afc0f2011-08-01 15:29:30 -070048 <TextView
49 android:id="@android:id/empty"
50 android:layout_width="match_parent"
51 android:layout_height="wrap_content"
52 android:visibility="gone"
53 android:paddingLeft="16dip"
54 android:paddingRight="16dip"
55 android:paddingTop="8dip"
56 android:paddingBottom="8dip"
57 android:text="@string/data_usage_empty"
58 android:textAppearance="?android:attr/textAppearanceSmall" />
59
Jeff Sharkeyf54f4352011-06-23 22:15:54 -070060 <include layout="@layout/data_usage_detail" />
61
Jeff Sharkey8a503642011-06-10 13:31:21 -070062</LinearLayout>