| Index: chrome/android/java/res/layout/autofill_editing_layout_shipping.xml
|
| diff --git a/chrome/android/java/res/layout/autofill_editing_layout_shipping.xml b/chrome/android/java/res/layout/autofill_editing_layout_shipping.xml
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b139fc0d2f0feb33a1889dc99bcd2356daf3c9ee
|
| --- /dev/null
|
| +++ b/chrome/android/java/res/layout/autofill_editing_layout_shipping.xml
|
| @@ -0,0 +1,47 @@
|
| +<?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/editing_layout_shipping"
|
| + android:layout_width="match_parent"
|
| + android:layout_height="wrap_content"
|
| + android:columnCount="4">
|
| + <EditText
|
| + android:layout_height="@dimen/autofill_edit_height"
|
| + android:id="@+id/recipient_name"
|
| + android:layout_margin="@dimen/autofill_edit_margin"
|
| + android:textSize="@dimen/autofill_edit_text_size"
|
| + android:layout_gravity="fill_horizontal"
|
| + android:layout_columnSpan="4"/>
|
| + <EditText
|
| + android:layout_height="@dimen/autofill_edit_height"
|
| + android:id="@+id/street_address_1"
|
| + android:layout_margin="@dimen/autofill_edit_margin"
|
| + android:textSize="@dimen/autofill_edit_text_size"
|
| + android:layout_gravity="fill_horizontal"
|
| + android:layout_columnSpan="4"/>
|
| + <EditText
|
| + android:layout_height="@dimen/autofill_edit_height"
|
| + android:id="@+id/street_address_2"
|
| + android:layout_margin="@dimen/autofill_edit_margin"
|
| + android:textSize="@dimen/autofill_edit_text_size"
|
| + android:layout_gravity="fill_horizontal"
|
| + android:layout_columnSpan="4"/>
|
| + <EditText
|
| + android:layout_height="@dimen/autofill_edit_height"
|
| + android:id="@+id/city"
|
| + android:layout_margin="@dimen/autofill_edit_margin"
|
| + android:textSize="@dimen/autofill_edit_text_size"
|
| + android:layout_gravity="fill_horizontal"
|
| + android:layout_columnSpan="4"/>
|
| + <EditText
|
| + android:layout_height="@dimen/autofill_edit_height"
|
| + android:id="@+id/zip_code"
|
| + android:layout_margin="@dimen/autofill_edit_margin"
|
| + android:textSize="@dimen/autofill_edit_text_size"
|
| + android:layout_gravity="fill_horizontal"
|
| + android:layout_columnSpan="4"/>
|
| +</GridLayout>
|
|
|