manage.xml revision 19f054b0f69b2f56ea0e98a3bb7e0e62b90ff480
1<?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
13     implied.
14     See the License for the specific language governing permissions and
15     limitations under the License.
16-->
17
18<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
19        android:layout_width="wrap_content"
20        android:layout_height="wrap_content"
21        android:stretchColumns="0,1">
22
23    <TableRow>
24        <TextView android:text="@string/session" style="@style/label"/>
25        <TextView android:id="@+id/session" style="@style/value"/>
26    </TableRow>
27
28    <TableRow>
29        <TextView android:text="@string/duration" style="@style/label"/>
30        <TextView android:id="@+id/duration" style="@style/value"/>
31    </TableRow>
32
33    <TableRow>
34        <TextView android:text="@string/data_transmitted" style="@style/label"/>
35        <TextView android:id="@+id/data_transmitted" style="@style/value"/>
36    </TableRow>
37
38    <TableRow>
39        <TextView android:text="@string/data_received" style="@style/label"/>
40        <TextView android:id="@+id/data_received" style="@style/value"/>
41    </TableRow>
42
43</TableLayout>
44