blob: 56332c3bebeb6bc55c274fbb8a44f2c0b0c6e0fa [file] [log] [blame]
Chia-chi Yeh19f054b2011-06-03 17:06:29 -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
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"
Chia-chi Yeh8f6fdf42011-07-15 15:21:44 -070021 android:padding="3mm"
Chia-chi Yehd80549c82011-09-13 15:41:23 -070022 android:stretchColumns="0,1"
23 android:shrinkColumns="1">
Chia-chi Yeh19f054b2011-06-03 17:06:29 -070024
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
Chia-chi Yehb0736ab2012-02-27 17:30:41 -080035 <TableRow android:id="@+id/data_transmitted_row" android:visibility="gone">
Chia-chi Yeh19f054b2011-06-03 17:06:29 -070036 <TextView android:text="@string/data_transmitted" style="@style/label"/>
37 <TextView android:id="@+id/data_transmitted" style="@style/value"/>
38 </TableRow>
39
Chia-chi Yehb0736ab2012-02-27 17:30:41 -080040 <TableRow android:id="@+id/data_received_row" android:visibility="gone">
Chia-chi Yeh19f054b2011-06-03 17:06:29 -070041 <TextView android:text="@string/data_received" style="@style/label"/>
42 <TextView android:id="@+id/data_received" style="@style/value"/>
43 </TableRow>
44
45</TableLayout>