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

Unified Diff: chrome/android/java/res/layout/physical_web_optin.xml

Issue 1526323003: Add Physical Web opt-in dialog (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: taking changes from dfalcantara@ Created 5 years 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 | « chrome/android/java/AndroidManifest.xml ('k') | chrome/android/java/res/values-v17/styles.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/android/java/res/layout/physical_web_optin.xml
diff --git a/chrome/android/java/res/layout/physical_web_optin.xml b/chrome/android/java/res/layout/physical_web_optin.xml
new file mode 100644
index 0000000000000000000000000000000000000000..150e7c98e7aa0a2f64e5cfbe5eb660d25643813d
--- /dev/null
+++ b/chrome/android/java/res/layout/physical_web_optin.xml
@@ -0,0 +1,93 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright 2015 The Chromium Authors. All rights reserved.
+ Use of this source code is governed by a BSD-style license that can be
+ found in the LICENSE file. -->
+
+<merge
+ xmlns:android="http://schemas.android.com/apk/res/android" >
+
+ <ScrollView
+ android:layout_height="match_parent"
+ android:layout_width="match_parent"
+ android:layout_marginBottom="57dp"
+ android:fillViewport="true"
+ android:scrollbarStyle="outsideOverlay" >
+
+ <LinearLayout
+ android:layout_height="wrap_content"
+ android:layout_width="match_parent"
+ android:paddingStart="40dp"
+ android:paddingEnd="40dp"
+ android:gravity="center"
+ android:orientation="vertical" >
+
+ <ImageView
+ android:layout_height="140dp"
+ android:layout_width="140dp"
+ android:src="@drawable/physical_web_logo"
+ android:contentDescription="@null" />
+ <TextView
+ android:layout_height="wrap_content"
+ android:layout_width="wrap_content"
+ android:layout_marginTop="10dp"
+ android:layout_marginBottom="20dp"
+ android:text="@string/physical_web_optin_title"
+ android:textSize="24sp"
+ android:textColor="@android:color/black" />
+ <TextView
+ android:layout_height="wrap_content"
+ android:layout_width="match_parent"
+ android:text="@string/physical_web_optin_description"
+ android:textSize="16sp"
+ android:textColor="@color/light_normal_color" />
+
+ </LinearLayout>
+
+ </ScrollView>
+
+ <View
+ style="@style/ButtonBarTopDivider"
+ android:layout_gravity="bottom"
+ android:layout_marginBottom="56dp" />
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="56dp"
+ android:layout_gravity="bottom"
+ android:orientation="horizontal" >
+
+ <!--suppress ButtonStyle -->
+ <Button
+ android:id="@+id/physical_web_decline"
+ android:layout_width="0dp"
+ android:layout_height="match_parent"
+ android:layout_weight="1"
+ android:background="?attr/listChoiceBackgroundIndicator"
+ android:gravity="start|center_vertical"
+ android:textDirection="locale"
+ android:paddingStart="16dp"
+ android:paddingEnd="16dp"
+ android:text="@string/no_thanks"
+ android:textAllCaps="true"
+ android:textColor="@color/light_normal_color"
+ android:textSize="14sp" />
+
+ <!--suppress ButtonStyle -->
+ <Button
+ android:id="@+id/physical_web_enable"
+ android:layout_width="0dp"
+ android:layout_height="match_parent"
+ android:layout_weight="1"
+ android:background="?attr/listChoiceBackgroundIndicator"
+ android:gravity="end|center_vertical"
+ android:textDirection="locale"
+ android:paddingStart="16dp"
+ android:paddingEnd="16dp"
+ android:text="@string/enable"
+ android:textAllCaps="true"
+ android:textColor="@color/light_active_color"
+ android:textSize="14sp" />
+
+ </LinearLayout>
+
+</merge>
« no previous file with comments | « chrome/android/java/AndroidManifest.xml ('k') | chrome/android/java/res/values-v17/styles.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698