Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6368)

Unified Diff: chrome/android/java/res/layout/autofill_dialog_content.xml

Issue 12412003: Initial UI structure for autofill dialog (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixes to Ted's comments Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698