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

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

Issue 12412003: Initial UI structure for autofill dialog (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Got rid of unused includes Created 7 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/android/java/res/layout/autofill_general_layout.xml
diff --git a/chrome/android/java/res/layout/autofill_general_layout.xml b/chrome/android/java/res/layout/autofill_general_layout.xml
new file mode 100644
index 0000000000000000000000000000000000000000..83ae022698f3bffe74bd2f291421ef3ec1810bd8
--- /dev/null
+++ b/chrome/android/java/res/layout/autofill_general_layout.xml
@@ -0,0 +1,60 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (c) 2013 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.
+-->
+<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/general_layout"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:columnCount="4">
+ <TextView
+ android:text="@string/autofill_billing_title"
+ android:id="@+id/billing_title"
+ android:layout_marginLeft="5dp"
+ android:layout_columnSpan="2"
+ android:textSize="14sp"/>
+ <Space
+ android:layout_gravity="fill"
+ android:layout_columnSpan="2"/>
+ <Spinner
+ android:layout_margin="5dp"
+ android:id="@+id/cc_spinner"
+ android:layout_gravity="fill_horizontal"
+ android:layout_columnSpan="4"/>
+ <TextView
+ android:text="@string/autofill_shipping_title"
+ android:id="@+id/shipping_title"
+ android:layout_marginLeft="5dp"
+ android:layout_columnSpan="2"
+ android:textSize="14sp"/>
+ <Space
+ android:layout_gravity="fill"
+ android:layout_columnSpan="2"/>
+ <Spinner
+ android:layout_margin="5dp"
+ android:id="@+id/address_spinner"
+ android:layout_gravity="fill_horizontal"
+ android:layout_columnSpan="4"/>
+ <CheckBox
+ android:id="@+id/check_box"
+ android:layout_margin="5dp"
+ android:textSize="12sp"
+ android:text="@string/autofill_use_wallet"
+ android:layout_columnSpan="4"/>
+ <View
+ android:id="@+id/line_bottom"
+ android:layout_height="1dp"
+ android:layout_columnSpan="4"
+ android:background="#D9D9DC"/>
+ <Button
+ android:text="@string/autofill_terms_of_service"
+ android:padding="10dp"
+ android:id="@+id/terms_info"
+ android:textSize="11sp"
+ android:background="?android:attr/selectableItemBackground"
+ android:drawableRight="@drawable/arrow"
+ android:layout_columnSpan="4"
+ android:gravity="left"/>
+</GridLayout>
« no previous file with comments | « chrome/android/java/res/layout/autofill_editing_layout_shipping.xml ('k') | chrome/android/java/res/values/dimens.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698