| OLD | NEW |
| (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> | |
| OLD | NEW |