| 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_stats_container" | 8 android:id="@+id/data_reduction_stats_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" |
| 11 android:clipChildren="false" | 11 android:clipChildren="false" |
| 12 android:clipToPadding="false" | 12 android:clipToPadding="false" |
| 13 android:paddingStart="6dp" |
| 14 android:paddingEnd="6dp" |
| 13 android:orientation="vertical" > | 15 android:orientation="vertical" > |
| 14 | 16 |
| 15 <TextView | 17 <TextView |
| 16 android:layout_width="match_parent" | 18 android:layout_width="match_parent" |
| 17 android:layout_height="wrap_content" | 19 android:layout_height="wrap_content" |
| 18 android:fadingEdge="horizontal" | 20 android:fadingEdge="horizontal" |
| 19 android:text="@string/data_reduction_stats_title" | 21 android:text="@string/data_reduction_stats_title" |
| 20 android:textAppearance="@style/PreferenceCategoryTextStyle" /> | 22 android:textAppearance="@style/PreferenceCategoryTextStyle" /> |
| 21 | 23 |
| 22 <include layout="@layout/data_usage_chart" /> | 24 <include layout="@layout/data_usage_chart" /> |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 android:layout_height="wrap_content" | 125 android:layout_height="wrap_content" |
| 124 android:layout_marginBottom="20dp" | 126 android:layout_marginBottom="20dp" |
| 125 android:layout_marginTop="20dp" | 127 android:layout_marginTop="20dp" |
| 126 android:drawableStart="@drawable/exclamation_triangle" | 128 android:drawableStart="@drawable/exclamation_triangle" |
| 127 android:drawablePadding="6dp" | 129 android:drawablePadding="6dp" |
| 128 android:text="@string/data_reduction_proxy_unreachable_warn" | 130 android:text="@string/data_reduction_proxy_unreachable_warn" |
| 129 android:textColor="?android:attr/textColorPrimary" | 131 android:textColor="?android:attr/textColorPrimary" |
| 130 android:textSize="14sp" /> | 132 android:textSize="14sp" /> |
| 131 | 133 |
| 132 </LinearLayout> | 134 </LinearLayout> |
| OLD | NEW |