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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright (c) 2013 The Chromium Authors. All rights reserved.
3
4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file.
6 -->
7 <GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
8 android:id="@+id/general_layout"
9 android:layout_width="match_parent"
10 android:layout_height="wrap_content"
11 android:columnCount="4">
12 <TextView
13 android:text="@string/autofill_billing_title"
14 android:id="@+id/billing_title"
15 android:layout_marginLeft="5dp"
16 android:layout_columnSpan="2"
17 android:textSize="14sp"/>
18 <Space
19 android:layout_gravity="fill"
20 android:layout_columnSpan="2"/>
21 <Spinner
22 android:layout_margin="5dp"
23 android:id="@+id/cc_spinner"
24 android:layout_gravity="fill_horizontal"
25 android:layout_columnSpan="4"/>
26 <TextView
27 android:text="@string/autofill_shipping_title"
28 android:id="@+id/shipping_title"
29 android:layout_marginLeft="5dp"
30 android:layout_columnSpan="2"
31 android:textSize="14sp"/>
32 <Space
33 android:layout_gravity="fill"
34 android:layout_columnSpan="2"/>
35 <Spinner
36 android:layout_margin="5dp"
37 android:id="@+id/address_spinner"
38 android:layout_gravity="fill_horizontal"
39 android:layout_columnSpan="4"/>
40 <CheckBox
41 android:id="@+id/check_box"
42 android:layout_margin="5dp"
43 android:textSize="12sp"
44 android:text="@string/autofill_use_wallet"
45 android:layout_columnSpan="4"/>
46 <View
47 android:id="@+id/line_bottom"
48 android:layout_height="1dp"
49 android:layout_columnSpan="4"
50 android:background="#D9D9DC"/>
51 <Button
52 android:text="@string/autofill_terms_of_service"
53 android:padding="10dp"
54 android:id="@+id/terms_info"
55 android:textSize="11sp"
56 android:background="?android:attr/selectableItemBackground"
57 android:drawableRight="@drawable/arrow"
58 android:layout_columnSpan="4"
59 android:gravity="left"/>
60 </GridLayout>
OLDNEW
« 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