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

Side by Side Diff: chrome/android/java/res/layout/autofill_editing_layout_shipping.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:id="@+id/editing_layout_shipping"
9 android:layout_width="match_parent"
10 android:layout_height="wrap_content"
11 android:orientation="vertical">
12 <EditText
13 android:id="@+id/recipient_name"
14 android:layout_width="match_parent"
15 android:layout_height="@dimen/autofill_edit_height"
16 android:layout_margin="@dimen/autofill_edit_margin"
17 android:imeOptions="flagNavigateNext"
18 android:textSize="@dimen/autofill_edit_text_size"/>
19 <EditText
20 android:id="@+id/shipping_street_address_1"
21 android:layout_width="match_parent"
22 android:layout_height="@dimen/autofill_edit_height"
23 android:layout_margin="@dimen/autofill_edit_margin"
24 android:imeOptions="flagNavigateNext"
25 android:textSize="@dimen/autofill_edit_text_size"/>
26 <EditText
27 android:id="@+id/shipping_street_address_2"
28 android:layout_width="match_parent"
29 android:layout_height="@dimen/autofill_edit_height"
30 android:layout_margin="@dimen/autofill_edit_margin"
31 android:imeOptions="flagNavigateNext"
32 android:textSize="@dimen/autofill_edit_text_size"/>
33 <EditText
34 android:id="@+id/shipping_city"
35 android:layout_width="match_parent"
36 android:layout_height="@dimen/autofill_edit_height"
37 android:layout_margin="@dimen/autofill_edit_margin"
38 android:imeOptions="flagNavigateNext"
39 android:textSize="@dimen/autofill_edit_text_size"/>
40 <EditText
41 android:id="@+id/shipping_state"
42 android:layout_width="match_parent"
43 android:layout_height="@dimen/autofill_edit_height"
44 android:layout_margin="@dimen/autofill_edit_margin"
45 android:imeOptions="flagNavigateNext"
46 android:textSize="@dimen/autofill_edit_text_size"/>
47 <EditText
48 android:id="@+id/shipping_zip_code"
49 android:layout_width="match_parent"
50 android:layout_height="@dimen/autofill_edit_height"
51 android:layout_margin="@dimen/autofill_edit_margin"
52 android:imeOptions="flagNavigateNext"
53 android:textSize="@dimen/autofill_edit_text_size"/>
54 <Spinner
55 android:id="@+id/shipping_country_spinner"
56 android:layout_width="match_parent"
57 android:layout_height="wrap_content"
58 android:layout_margin="5dp"/>
59 <EditText
60 android:id="@+id/shipping_phone_number"
61 android:layout_width="match_parent"
62 android:layout_height="@dimen/autofill_edit_height"
63 android:layout_margin="@dimen/autofill_edit_margin"
64 android:textSize="@dimen/autofill_edit_text_size"/>
65 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698