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" |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 android:layout_width="wrap_content" | 77 android:layout_width="wrap_content" |
78 android:layout_marginTop="0dp" | 78 android:layout_marginTop="0dp" |
79 android:includeFontPadding="false" | 79 android:includeFontPadding="false" |
80 android:textColor="@color/light_active_color" | 80 android:textColor="@color/light_active_color" |
81 android:textSize="50sp" /> | 81 android:textSize="50sp" /> |
82 | 82 |
83 </LinearLayout> | 83 </LinearLayout> |
84 | 84 |
85 <include layout="@layout/data_usage_chart" /> | 85 <include layout="@layout/data_usage_chart" /> |
86 | 86 |
87 <LinearLayout | 87 <FrameLayout |
88 android:layout_width="match_parent" | 88 android:layout_width="match_parent" |
89 android:layout_height="wrap_content" > | 89 android:layout_height="wrap_content" > |
90 | 90 |
91 <TextView | 91 <TextView |
92 android:id="@+id/data_reduction_start_date" | 92 android:id="@+id/data_reduction_start_date" |
93 android:layout_width="0dp" | 93 android:layout_width="wrap_content" |
94 android:layout_height="wrap_content" | 94 android:layout_height="wrap_content" |
95 android:layout_weight="1" | |
96 android:textAppearance="@style/PreferenceSummary" | 95 android:textAppearance="@style/PreferenceSummary" |
97 android:textSize="14sp" /> | 96 android:textSize="14sp" /> |
98 | 97 |
99 <TextView | 98 <TextView |
100 android:id="@+id/data_reduction_end_date" | 99 android:id="@+id/data_reduction_end_date" |
101 android:layout_width="wrap_content" | 100 android:layout_width="wrap_content" |
102 android:layout_height="wrap_content" | 101 android:layout_height="wrap_content" |
103 android:textAppearance="@style/PreferenceSummary" | 102 android:textAppearance="@style/PreferenceSummary" |
104 android:textSize="14sp" /> | 103 android:textSize="14sp" /> |
105 | 104 |
106 </LinearLayout> | 105 </FrameLayout> |
107 | 106 |
108 <TextView | 107 <TextView |
109 android:id="@+id/data_reduction_proxy_unreachable" | 108 android:id="@+id/data_reduction_proxy_unreachable" |
110 android:layout_width="match_parent" | 109 android:layout_width="match_parent" |
111 android:layout_height="wrap_content" | 110 android:layout_height="wrap_content" |
112 android:layout_marginBottom="20dp" | 111 android:layout_marginBottom="20dp" |
113 android:layout_marginTop="20dp" | 112 android:layout_marginTop="20dp" |
114 android:drawableStart="@drawable/exclamation_triangle" | 113 android:drawableStart="@drawable/exclamation_triangle" |
115 android:drawablePadding="6dp" | 114 android:drawablePadding="6dp" |
116 android:text="@string/data_reduction_proxy_unreachable_warn" | 115 android:text="@string/data_reduction_proxy_unreachable_warn" |
117 android:textColor="?android:attr/textColorPrimary" | 116 android:textColor="?android:attr/textColorPrimary" |
118 android:textSize="14sp" /> | 117 android:textSize="14sp" /> |
119 | 118 |
120 <include layout="@layout/data_usage_breakdown" /> | 119 <include layout="@layout/data_usage_breakdown" /> |
121 | 120 |
122 </LinearLayout> | 121 </LinearLayout> |
OLD | NEW |