OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. |
3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
4 found in the LICENSE file. --> | 4 found in the LICENSE file. --> |
5 | 5 |
6 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | 6 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
7 xmlns:tools="http://schemas.android.com/tools" | 7 xmlns:tools="http://schemas.android.com/tools" |
8 android:id="@+id/data_reduction_statistics_container" | 8 android:id="@+id/data_reduction_statistics_container" |
9 android:layout_width="match_parent" | 9 android:layout_width="match_parent" |
10 android:layout_height="wrap_content" | 10 android:layout_height="wrap_content" |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 android:layout_height="wrap_content" | 95 android:layout_height="wrap_content" |
96 android:orientation="vertical" | 96 android:orientation="vertical" |
97 android:paddingStart="10dp" > | 97 android:paddingStart="10dp" > |
98 | 98 |
99 <TextView | 99 <TextView |
100 android:id="@+id/data_reduction_original_size" | 100 android:id="@+id/data_reduction_original_size" |
101 android:layout_width="wrap_content" | 101 android:layout_width="wrap_content" |
102 android:layout_height="wrap_content" | 102 android:layout_height="wrap_content" |
103 android:layout_marginTop="14dp" | 103 android:layout_marginTop="14dp" |
104 android:textColor="?android:attr/textColorPrimary" | 104 android:textColor="?android:attr/textColorPrimary" |
105 android:textSize="14sp" /> | 105 android:textSize="14sp" |
| 106 android:textStyle="bold" /> |
106 | 107 |
107 <TextView | 108 <TextView |
108 android:id="@+id/data_reduction_compressed_size" | 109 android:id="@+id/data_reduction_compressed_size" |
109 android:layout_width="wrap_content" | 110 android:layout_width="wrap_content" |
110 android:layout_height="wrap_content" | 111 android:layout_height="wrap_content" |
111 android:layout_marginTop="4dp" | 112 android:layout_marginTop="4dp" |
112 android:textColor="?android:attr/textColorPrimary" | 113 android:textColor="?android:attr/textColorPrimary" |
113 android:textSize="14sp" /> | 114 android:textSize="14sp" |
| 115 android:textStyle="bold" /> |
114 </LinearLayout> | 116 </LinearLayout> |
115 | 117 |
116 </LinearLayout> | 118 </LinearLayout> |
117 | 119 |
118 <TextView | 120 <TextView |
119 android:id="@+id/data_reduction_proxy_unreachable" | 121 android:id="@+id/data_reduction_proxy_unreachable" |
120 android:layout_width="match_parent" | 122 android:layout_width="match_parent" |
121 android:layout_height="wrap_content" | 123 android:layout_height="wrap_content" |
122 android:layout_marginBottom="20dp" | 124 android:layout_marginBottom="20dp" |
123 android:layout_marginTop="20dp" | 125 android:layout_marginTop="20dp" |
124 android:drawableStart="@drawable/deprecation_warning" | 126 android:drawableStart="@drawable/deprecation_warning" |
125 android:drawablePadding="6dp" | 127 android:drawablePadding="6dp" |
126 android:text="@string/data_reduction_proxy_unreachable_warn" | 128 android:text="@string/data_reduction_proxy_unreachable_warn" |
127 android:textColor="?android:attr/textColorPrimary" | 129 android:textColor="?android:attr/textColorPrimary" |
128 android:textSize="14sp" /> | 130 android:textSize="14sp" /> |
129 | 131 |
130 </LinearLayout> | 132 </LinearLayout> |
OLD | NEW |