blob: 547d85d4ce3c1c78bc9f7d0e0d21836d4d55c04d [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
35 <LinearLayout
36 android:layout_width="match_parent"
37 android:layout_height="wrap_content"
38 android:orientation="horizontal"
39 android:paddingLeft="16dip"
40 android:paddingRight="16dip">
41
42 <TextView
43 android:layout_width="wrap_content"
44 android:layout_height="wrap_content"
45 android:layout_gravity="center_vertical"
46 android:text="@string/data_usage_cycle" />
47
48 <Spinner
49 android:id="@+id/cycles"
50 android:layout_width="0dip"
51 android:layout_height="wrap_content"
52 android:layout_weight="1" />
53
54 </LinearLayout>
55
Jeff Sharkeyf54f4352011-06-23 22:15:54 -070056 <include layout="@layout/data_usage_chart" />
57 <include layout="@layout/data_usage_detail" />
58
Jeff Sharkey8a503642011-06-10 13:31:21 -070059</LinearLayout>