| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- | 2 <!-- |
| 3 Copyright 2016 The Chromium Authors. All rights reserved. | 3 Copyright 2016 The Chromium Authors. All rights reserved. |
| 4 | 4 |
| 5 Use of this source code is governed by a BSD-style license that can be | 5 Use of this source code is governed by a BSD-style license that can be |
| 6 found in the LICENSE file. | 6 found in the LICENSE file. |
| 7 --> | 7 --> |
| 8 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | 8 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 9 android:id="@+id/paymentOptionLine" |
| 9 android:layout_height="wrap_content" | 10 android:layout_height="wrap_content" |
| 10 android:layout_width="match_parent"> | 11 android:layout_width="match_parent"> |
| 11 | 12 |
| 12 <RadioButton | 13 <RadioButton |
| 13 android:id="@+id/optionRadioButton" | 14 android:id="@+id/optionRadioButton" |
| 14 android:layout_height="wrap_content" | 15 android:layout_height="wrap_content" |
| 15 android:layout_width="wrap_content" | 16 android:layout_width="wrap_content" |
| 16 android:clickable="false" | 17 android:clickable="false" |
| 17 android:importantForAccessibility="no" | 18 android:importantForAccessibility="no" |
| 18 android:paddingEnd="8dp" | 19 android:paddingEnd="8dp" |
| (...skipping 18 matching lines...) Expand all Loading... |
| 37 <TextView | 38 <TextView |
| 38 android:id="@+id/optionSubLabel" | 39 android:id="@+id/optionSubLabel" |
| 39 android:layout_below="@id/optionLabel" | 40 android:layout_below="@id/optionLabel" |
| 40 android:layout_height="wrap_content" | 41 android:layout_height="wrap_content" |
| 41 android:layout_toEndOf="@id/optionRadioButton" | 42 android:layout_toEndOf="@id/optionRadioButton" |
| 42 android:layout_toStartOf="@id/optionIcon" | 43 android:layout_toStartOf="@id/optionIcon" |
| 43 android:layout_width="match_parent" | 44 android:layout_width="match_parent" |
| 44 android:singleLine="false" /> | 45 android:singleLine="false" /> |
| 45 | 46 |
| 46 </RelativeLayout> | 47 </RelativeLayout> |
| OLD | NEW |