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

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

Issue 21205007: [rAc Android] Remove the old dialog implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 7 years, 4 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 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
8 android:layout_width="match_parent"
9 android:layout_height="wrap_content"
10 android:id="@+id/editing_layout_cc_billing"
11 android:orientation="vertical">
12 <GridLayout
13 android:id="@+id/editing_layout_credit_card"
14 android:layout_width="match_parent"
15 android:layout_height="wrap_content"
16 android:columnCount="4">
17 <EditText
18 android:layout_height="@dimen/autofill_edit_height"
19 android:id="@+id/card_number"
20 android:layout_margin="@dimen/autofill_edit_margin"
21 android:textSize="@dimen/autofill_edit_text_size"
22 android:layout_gravity="fill_horizontal"
23 android:imeOptions="flagNavigateNext"
24 android:layout_columnSpan="4"/>
25 <Spinner
26 android:layout_width="85dp"
27 android:layout_margin="5dp"
28 android:id="@+id/expiration_month_spinner"
29 android:layout_gravity="fill_horizontal"/>
30 <Spinner
31 android:layout_width="100dp"
32 android:layout_margin="5dp"
33 android:id="@+id/expiration_year_spinner"
34 android:layout_gravity="fill_horizontal"/>
35 <Space
36 android:layout_columnSpan="1"
37 android:layout_gravity="fill"/>
38 <EditText
39 android:layout_height="@dimen/autofill_edit_height"
40 android:id="@+id/cvc_code"
41 android:layout_margin="@dimen/autofill_edit_margin"
42 android:drawablePadding="@dimen/autofill_menu_item_padding"
43 android:textSize="@dimen/autofill_edit_text_size"
44 android:imeOptions="flagNavigateNext"
45 android:layout_gravity="end"/>
46 <EditText
47 android:layout_height="@dimen/autofill_edit_height"
48 android:id="@+id/cardholder_name"
49 android:layout_margin="@dimen/autofill_edit_margin"
50 android:textSize="@dimen/autofill_edit_text_size"
51 android:layout_gravity="fill_horizontal"
52 android:imeOptions="flagNavigateNext"
53 android:layout_columnSpan="4"/>
54 </GridLayout>
55 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
56 android:id="@+id/editing_layout_billing"
57 android:layout_width="match_parent"
58 android:layout_height="wrap_content"
59 android:orientation="vertical">
60 <EditText
61 android:id="@+id/billing_street_address_1"
62 android:layout_width="match_parent"
63 android:layout_height="@dimen/autofill_edit_height"
64 android:layout_margin="@dimen/autofill_edit_margin"
65 android:imeOptions="flagNavigateNext"
66 android:textSize="@dimen/autofill_edit_text_size"/>
67 <EditText
68 android:id="@+id/billing_street_address_2"
69 android:layout_width="match_parent"
70 android:layout_height="@dimen/autofill_edit_height"
71 android:layout_margin="@dimen/autofill_edit_margin"
72 android:imeOptions="flagNavigateNext"
73 android:textSize="@dimen/autofill_edit_text_size"/>
74 <EditText
75 android:id="@+id/billing_city"
76 android:layout_width="match_parent"
77 android:layout_height="@dimen/autofill_edit_height"
78 android:layout_margin="@dimen/autofill_edit_margin"
79 android:imeOptions="flagNavigateNext"
80 android:textSize="@dimen/autofill_edit_text_size"/>
81 <EditText
82 android:id="@+id/billing_state"
83 android:layout_width="match_parent"
84 android:layout_height="@dimen/autofill_edit_height"
85 android:layout_margin="@dimen/autofill_edit_margin"
86 android:imeOptions="flagNavigateNext"
87 android:textSize="@dimen/autofill_edit_text_size"/>
88 <EditText
89 android:id="@+id/billing_zip_code"
90 android:layout_width="match_parent"
91 android:layout_height="@dimen/autofill_edit_height"
92 android:layout_margin="@dimen/autofill_edit_margin"
93 android:imeOptions="flagNavigateNext"
94 android:textSize="@dimen/autofill_edit_text_size"/>
95 <Spinner
96 android:id="@+id/billing_country_spinner"
97 android:layout_width="match_parent"
98 android:layout_height="wrap_content"
99 android:layout_margin="5dp"/>
100 <EditText
101 android:id="@+id/billing_phone_number"
102 android:layout_width="match_parent"
103 android:layout_height="@dimen/autofill_edit_height"
104 android:layout_margin="@dimen/autofill_edit_margin"
105 android:textSize="@dimen/autofill_edit_text_size"/>
106 </LinearLayout>
107 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698