OLD | NEW |
| (Empty) |
1 <?xml version="1.0" encoding="utf-8"?> | |
2 <!-- Copyright 2016 The Chromium Authors. All rights reserved. | |
3 Use of this source code is governed by a BSD-style license that can be | |
4 found in the LICENSE file. --> | |
5 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
6 android:layout_width="wrap_content" | |
7 android:layout_height="wrap_content" | |
8 android:background="@android:color/darker_gray" | |
9 android:orientation="horizontal"> | |
10 <LinearLayout | |
11 android:layout_width="wrap_content" | |
12 android:layout_height="wrap_content" | |
13 android:orientation="vertical"> | |
14 <TextView | |
15 android:layout_width="wrap_content" | |
16 android:layout_height="wrap_content" | |
17 android:text="@string/received_bytes_title" | |
18 android:padding="10dp"/> | |
19 <TextView | |
20 android:layout_width="wrap_content" | |
21 android:layout_height="wrap_content" | |
22 android:text="@string/sent_bytes_title" | |
23 android:padding="10dp"/> | |
24 <TextView | |
25 android:layout_width="wrap_content" | |
26 android:layout_height="wrap_content" | |
27 android:text="@string/commit_count_title" | |
28 android:padding="10dp"/> | |
29 </LinearLayout> | |
30 <LinearLayout | |
31 android:layout_width="wrap_content" | |
32 android:layout_height="wrap_content" | |
33 android:orientation="vertical"> | |
34 <TextView | |
35 android:id="@+id/bytes_received_client" | |
36 android:layout_width="wrap_content" | |
37 android:layout_height="wrap_content" | |
38 android:padding="10dp"/> | |
39 <TextView | |
40 android:id="@+id/bytes_sent_client" | |
41 android:layout_width="wrap_content" | |
42 android:layout_height="wrap_content" | |
43 android:padding="10dp"/> | |
44 <TextView | |
45 android:id="@+id/commit_count" | |
46 android:layout_width="wrap_content" | |
47 android:layout_height="wrap_content" | |
48 android:padding="10dp"/> | |
49 </LinearLayout> | |
50 </LinearLayout> | |
OLD | NEW |