| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright (c) 2013 The Chromium Authors. All rights reserved. | 2 <!-- Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 3 | 3 |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. | 5 found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | 7 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 8 android:layout_width="match_parent" | 8 android:layout_width="match_parent" |
| 9 android:layout_height="match_parent" | 9 android:layout_height="match_parent" |
| 10 android:id="@+id/editing_layout_cc_billing" | 10 android:id="@+id/editing_layout_cc_billing" |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 android:layout_gravity="fill_horizontal"/> | 35 android:layout_gravity="fill_horizontal"/> |
| 36 <Space | 36 <Space |
| 37 android:layout_columnSpan="1" | 37 android:layout_columnSpan="1" |
| 38 android:layout_gravity="fill"/> | 38 android:layout_gravity="fill"/> |
| 39 <EditText | 39 <EditText |
| 40 android:layout_height="@dimen/autofill_edit_height" | 40 android:layout_height="@dimen/autofill_edit_height" |
| 41 android:id="@+id/cvc_code" | 41 android:id="@+id/cvc_code" |
| 42 android:layout_margin="@dimen/autofill_edit_margin" | 42 android:layout_margin="@dimen/autofill_edit_margin" |
| 43 android:drawablePadding="@dimen/autofill_menu_item_padding" | 43 android:drawablePadding="@dimen/autofill_menu_item_padding" |
| 44 android:textSize="@dimen/autofill_edit_text_size" | 44 android:textSize="@dimen/autofill_edit_text_size" |
| 45 android:layout_gravity="right"/> | 45 android:layout_gravity="end"/> |
| 46 <EditText | 46 <EditText |
| 47 android:layout_height="@dimen/autofill_edit_height" | 47 android:layout_height="@dimen/autofill_edit_height" |
| 48 android:id="@+id/cardholder_name" | 48 android:id="@+id/cardholder_name" |
| 49 android:layout_margin="@dimen/autofill_edit_margin" | 49 android:layout_margin="@dimen/autofill_edit_margin" |
| 50 android:textSize="@dimen/autofill_edit_text_size" | 50 android:textSize="@dimen/autofill_edit_text_size" |
| 51 android:layout_gravity="fill_horizontal" | 51 android:layout_gravity="fill_horizontal" |
| 52 android:layout_columnSpan="4"/> | 52 android:layout_columnSpan="4"/> |
| 53 </GridLayout> | 53 </GridLayout> |
| 54 <GridLayout xmlns:android="http://schemas.android.com/apk/res/android" | 54 <GridLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 55 android:id="@+id/editing_layout_billing" | 55 android:id="@+id/editing_layout_billing" |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 android:layout_columnSpan="4"/> | 99 android:layout_columnSpan="4"/> |
| 100 <EditText | 100 <EditText |
| 101 android:layout_height="@dimen/autofill_edit_height" | 101 android:layout_height="@dimen/autofill_edit_height" |
| 102 android:id="@+id/billing_phone_number" | 102 android:id="@+id/billing_phone_number" |
| 103 android:layout_margin="@dimen/autofill_edit_margin" | 103 android:layout_margin="@dimen/autofill_edit_margin" |
| 104 android:textSize="@dimen/autofill_edit_text_size" | 104 android:textSize="@dimen/autofill_edit_text_size" |
| 105 android:layout_gravity="fill_horizontal" | 105 android:layout_gravity="fill_horizontal" |
| 106 android:layout_columnSpan="4"/> | 106 android:layout_columnSpan="4"/> |
| 107 </GridLayout> | 107 </GridLayout> |
| 108 </LinearLayout> | 108 </LinearLayout> |
| OLD | NEW |