Chromium Code Reviews| Index: chrome/android/java/res/layout/autofill_dialog_content.xml |
| diff --git a/chrome/android/java/res/layout/autofill_dialog_content.xml b/chrome/android/java/res/layout/autofill_dialog_content.xml |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..8063fd9fffd1cc6f5d8c3af3700922e3ef538bc5 |
| --- /dev/null |
| +++ b/chrome/android/java/res/layout/autofill_dialog_content.xml |
| @@ -0,0 +1,32 @@ |
| +<?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. |
| +--> |
| +<org.chromium.chrome.browser.autofill.AutofillDialogContentView xmlns:android="http://schemas.android.com/apk/res/android" |
| + android:layout_width="wrap_content" |
| + android:layout_height="wrap_content"> |
| + <!--TODO(yusufo):Add accessibility content description for all actionable items--> |
| + <include layout="@layout/autofill_general_layout"/> |
| + <include layout="@layout/autofill_editing_layout_shipping"/> |
| + <include layout="@layout/autofill_editing_layout_billing"/> |
| + <LinearLayout |
| + android:layout_width="match_parent" |
| + android:layout_height="match_parent" |
| + android:id="@+id/loading_icon" |
| + android:visibility="gone" |
| + android:gravity="center" |
| + android:orientation="vertical"> |
| + <ProgressBar |
| + android:layout_marginTop="30dp" |
| + android:layout_width="48dp" |
|
Ted C
2013/03/07 18:28:09
is this meant to match @dimen/autofill_edit_height
Yusuf
2013/03/07 18:53:20
It is a coincidence. I think we will end up gettin
|
| + android:layout_height="48dp" |
| + android:indeterminate="true"/> |
| + <TextView |
| + android:layout_margin="20dp" |
| + android:layout_width="wrap_content" |
| + android:layout_height="wrap_content" |
| + android:text="@string/autofill_fetch_message" /> |
| + </LinearLayout> |
| +</org.chromium.chrome.browser.autofill.AutofillDialogContentView> |