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

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

Issue 2475953002: [Autofill] Change spacing in the local card editor, address editor (Android) (Closed)
Patch Set: Further adjust top margins Created 4 years, 1 month 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_profile_editor.xml
diff --git a/chrome/android/java/res/layout/autofill_profile_editor.xml b/chrome/android/java/res/layout/autofill_profile_editor.xml
index d1a0f53788b384c99b40d96e8c3444cb93b77e22..d711f3d401d01ac7a535b4891c5882606fcd061e 100644
--- a/chrome/android/java/res/layout/autofill_profile_editor.xml
+++ b/chrome/android/java/res/layout/autofill_profile_editor.xml
@@ -8,6 +8,7 @@
xmlns:app="http://schemas.android.com/apk/res-auto" >
<!-- Country -->
+ <!-- The top margin of this dropdown is already very large -->
<include layout="@layout/payment_request_editor_dropdown" />
<!-- Country specific address information
@@ -24,7 +25,8 @@
android:id="@+id/phone_number_label"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:layout_marginBottom="@dimen/pref_autofill_content_spacing" >
+ android:layout_marginTop="@dimen/pref_autofill_field_top_margin"
+ android:layout_marginBottom="@dimen/pref_autofill_field_bottom_margin" >
<EditText
android:id="@+id/phone_number_edit"
@@ -41,7 +43,9 @@
<org.chromium.chrome.browser.widget.CompatibilityTextInputLayout
android:id="@+id/email_address_label"
android:layout_width="match_parent"
- android:layout_height="wrap_content" >
+ android:layout_height="wrap_content"
+ android:layout_marginTop="@dimen/pref_autofill_field_top_margin"
+ android:layout_marginBottom="@dimen/pref_autofill_field_bottom_margin" >
<EditText
android:id="@+id/email_address_edit"

Powered by Google App Engine
This is Rietveld 408576698