Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(171)

Side by Side Diff: chrome/android/java/res/layout/data_use_dialog.xml

Issue 1678943002: DataUse UI strings should be changeable via Finch (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: autogen enum and more changes Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698