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..b9768bc6c9526c2e4ccffa3f2c3791e00af102ac |
--- /dev/null |
+++ b/chrome/android/java/res/layout/autofill_dialog_content.xml |
@@ -0,0 +1,35 @@ |
+<?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"/> |
Ted C
2013/03/06 21:57:11
The indenting is off for this line. I would proba
Yusuf
2013/03/07 18:16:58
Done.
|
+ <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" |
+ 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> |