| 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 android:layout_height="wrap_content" | 7 android:layout_height="wrap_content" |
| 8 android:layout_width="match_parent" | 8 android:layout_width="match_parent" |
| 9 android:orientation="vertical" | 9 android:orientation="vertical" |
| 10 android:paddingBottom="16dp" | 10 android:paddingBottom="16dp" |
| 11 android:paddingStart="16dp" | 11 android:paddingStart="16dp" |
| 12 android:paddingTop="16dp" > | 12 android:paddingTop="16dp" > |
| 13 | 13 |
| 14 <TextView | 14 <TextView |
| 15 android:id="@+id/data_use_message" |
| 15 android:layout_height="wrap_content" | 16 android:layout_height="wrap_content" |
| 16 android:layout_width="match_parent" | 17 android:layout_width="match_parent" |
| 17 android:layout_marginBottom="16dp" | 18 android:layout_marginBottom="16dp" |
| 18 android:layout_marginStart="8dp" | 19 android:layout_marginStart="8dp" |
| 19 android:text="@string/data_use_tracking_ended_message" | |
| 20 android:textColor="@color/light_normal_color" | 20 android:textColor="@color/light_normal_color" |
| 21 android:textSize="16sp" /> | 21 android:textSize="16sp" /> |
| 22 | 22 |
| 23 <TextView | 23 <TextView |
| 24 android:id="@+id/learn_more" | 24 android:id="@+id/learn_more" |
| 25 android:layout_height="wrap_content" | 25 android:layout_height="wrap_content" |
| 26 android:layout_width="match_parent" | 26 android:layout_width="match_parent" |
| 27 android:clickable="true" | 27 android:clickable="true" |
| 28 android:layout_marginBottom="16dp" | 28 android:layout_marginBottom="16dp" |
| 29 android:layout_marginStart="8dp" | 29 android:layout_marginStart="8dp" |
| 30 android:text="@string/learn_more" | 30 android:text="@string/learn_more" |
| 31 android:textColor="@color/light_active_color" | 31 android:textColor="@color/light_active_color" |
| 32 android:textSize="16sp" /> | 32 android:textSize="16sp" /> |
| 33 | 33 |
| 34 <CheckBox | 34 <CheckBox |
| 35 android:id="@+id/data_use_checkbox" | 35 android:id="@+id/data_use_checkbox" |
| 36 android:layout_height="wrap_content" | 36 android:layout_height="wrap_content" |
| 37 android:layout_width="match_parent" | 37 android:layout_width="match_parent" |
| 38 android:text="@string/data_use_tracking_ended_checkbox_message" | |
| 39 android:textColor="@color/light_normal_color" | 38 android:textColor="@color/light_normal_color" |
| 40 android:textSize="16sp" /> | 39 android:textSize="16sp" /> |
| 41 | 40 |
| 42 </LinearLayout> | 41 </LinearLayout> |
| OLD | NEW |