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

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

Issue 1414453016: Data use UI fixes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@plateIntentSource
Patch Set: rebase Created 5 years, 1 month 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
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/datausage/DataUseTabUIManager.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <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>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/datausage/DataUseTabUIManager.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698