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