| 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..76813b732ab97a3fddcd32fe7fef10c784cb7ac6
|
| --- /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="48dp"
|
| + android:id="@+id/recipient_name"
|
| + android:layout_margin="2dp"
|
| + android:textSize="18sp"
|
| + android:layout_gravity="fill_horizontal"
|
| + android:layout_columnSpan="4"/>
|
| + <EditText
|
| + android:layout_height="48dp"
|
| + android:id="@+id/street_address_1"
|
| + android:layout_margin="2dp"
|
| + android:textSize="18sp"
|
| + android:layout_gravity="fill_horizontal"
|
| + android:layout_columnSpan="4"/>
|
| + <EditText
|
| + android:layout_height="48dp"
|
| + android:id="@+id/street_address_2"
|
| + android:layout_margin="2dp"
|
| + android:textSize="18sp"
|
| + android:layout_gravity="fill_horizontal"
|
| + android:layout_columnSpan="4"/>
|
| + <EditText
|
| + android:layout_height="48dp"
|
| + android:id="@+id/city"
|
| + android:layout_margin="2dp"
|
| + android:textSize="18sp"
|
| + android:layout_gravity="fill_horizontal"
|
| + android:layout_columnSpan="4"/>
|
| + <EditText
|
| + android:layout_height="48dp"
|
| + android:id="@+id/zip_code"
|
| + android:layout_margin="2dp"
|
| + android:textSize="18sp"
|
| + android:layout_gravity="fill_horizontal"
|
| + android:layout_columnSpan="4"/>
|
| +</GridLayout>
|
|
|