blob: 3f4ca5b11cc99fc2856339b952d37dad50ffe19c [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
22 <LinearLayout
Jeff Sharkeyf54f4352011-06-23 22:15:54 -070023 android:id="@+id/network_switches"
Jeff Sharkey8a503642011-06-10 13:31:21 -070024 android:layout_width="match_parent"
25 android:layout_height="wrap_content"
Jeff Sharkey4c72ae52011-06-14 15:01:18 -070026 android:orientation="vertical"
27 android:showDividers="middle|end"
28 android:divider="?android:attr/listDivider" />
Jeff Sharkey8a503642011-06-10 13:31:21 -070029
30 <LinearLayout
31 android:layout_width="match_parent"
32 android:layout_height="wrap_content"
33 android:orientation="horizontal"
34 android:paddingLeft="16dip"
35 android:paddingRight="16dip">
36
37 <TextView
38 android:layout_width="wrap_content"
39 android:layout_height="wrap_content"
40 android:layout_gravity="center_vertical"
41 android:text="@string/data_usage_cycle" />
42
43 <Spinner
44 android:id="@+id/cycles"
45 android:layout_width="0dip"
46 android:layout_height="wrap_content"
47 android:layout_weight="1" />
48
49 </LinearLayout>
50
Jeff Sharkeyf54f4352011-06-23 22:15:54 -070051 <include layout="@layout/data_usage_chart" />
52 <include layout="@layout/data_usage_detail" />
53
Jeff Sharkey8a503642011-06-10 13:31:21 -070054</LinearLayout>