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

Unified 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/android/java/res/layout/data_use_dialog.xml
diff --git a/chrome/android/java/res/layout/data_use_dialog.xml b/chrome/android/java/res/layout/data_use_dialog.xml
index cfc6e17ec0c94965d66634649cd6ba73ac548f29..63662c8d8cd1b870b11632eb63aec45bf5398f76 100644
--- a/chrome/android/java/res/layout/data_use_dialog.xml
+++ b/chrome/android/java/res/layout/data_use_dialog.xml
@@ -3,16 +3,40 @@
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file. -->
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content"
android:layout_width="match_parent"
- android:paddingStart="18dp"
- android:paddingTop="8dp" >
+ android:orientation="vertical"
+ android:paddingBottom="16dp"
+ android:paddingStart="16dp"
+ android:paddingTop="16dp" >
+
+ <TextView
+ android:layout_height="wrap_content"
+ android:layout_width="match_parent"
+ android:layout_marginBottom="16dp"
+ android:layout_marginStart="8dp"
+ android:text="@string/data_use_tracking_ended_message"
+ android:textColor="@color/light_normal_color"
+ android:textSize="16sp" />
+
+ <TextView
+ android:id="@+id/learn_more"
+ android:layout_height="wrap_content"
+ android:layout_width="match_parent"
+ android:clickable="true"
+ android:layout_marginBottom="16dp"
+ android:layout_marginStart="8dp"
+ android:text="@string/learn_more"
+ android:textColor="@color/light_active_color"
+ android:textSize="16sp" />
<CheckBox
android:id="@+id/data_use_checkbox"
android:layout_height="wrap_content"
- android:layout_width="match_parent"
- android:text="@string/data_use_tracking_ended_checkbox_message" />
+ android:layout_width="match_parent"
+ android:text="@string/data_use_tracking_ended_checkbox_message"
+ android:textColor="@color/light_normal_color"
+ android:textSize="16sp" />
-</FrameLayout>
+</LinearLayout>
« 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