manage.xml revision b0736abca910fbba8c31c002d7335360f5bc0929
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:padding="3mm"
22        android:stretchColumns="0,1"
23        android:shrinkColumns="1">
24
25    <TableRow>
26        <TextView android:text="@string/session" style="@style/label"/>
27        <TextView android:id="@+id/session" style="@style/value"/>
28    </TableRow>
29
30    <TableRow>
31        <TextView android:text="@string/duration" style="@style/label"/>
32        <TextView android:id="@+id/duration" style="@style/value"/>
33    </TableRow>
34
35    <TableRow android:id="@+id/data_transmitted_row" android:visibility="gone">
36        <TextView android:text="@string/data_transmitted" style="@style/label"/>
37        <TextView android:id="@+id/data_transmitted" style="@style/value"/>
38    </TableRow>
39
40    <TableRow android:id="@+id/data_received_row" android:visibility="gone">
41        <TextView android:text="@string/data_received" style="@style/label"/>
42        <TextView android:id="@+id/data_received" style="@style/value"/>
43    </TableRow>
44
45</TableLayout>
46