| 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 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | 8 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 9 android:orientation="vertical"> | 9 android:orientation="vertical"> |
| 10 | 10 |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 | 144 |
| 145 <TextView | 145 <TextView |
| 146 android:id="@+id/shippingAddressesLabel" | 146 android:id="@+id/shippingAddressesLabel" |
| 147 android:layout_height="wrap_content" | 147 android:layout_height="wrap_content" |
| 148 android:layout_width="match_parent" | 148 android:layout_width="match_parent" |
| 149 android:textColor="#0000ff" | 149 android:textColor="#0000ff" |
| 150 android:text="@string/payments_shipping_address_label" | 150 android:text="@string/payments_shipping_address_label" |
| 151 android:padding="16dp" | 151 android:padding="16dp" |
| 152 android:visibility="gone" /> | 152 android:visibility="gone" /> |
| 153 | 153 |
| 154 <TextView |
| 155 android:id="@+id/selectShippingAddressPrompt" |
| 156 android:layout_height="wrap_content" |
| 157 android:layout_width="match_parent" |
| 158 android:text="@string/payments_select_shipping_address_prompt" |
| 159 android:padding="16dp" |
| 160 android:visibility="gone" /> |
| 161 |
| 154 <RadioGroup | 162 <RadioGroup |
| 155 android:id="@+id/shippingAddresses" | 163 android:id="@+id/shippingAddresses" |
| 156 android:layout_height="wrap_content" | 164 android:layout_height="wrap_content" |
| 157 android:layout_width="match_parent" | 165 android:layout_width="match_parent" |
| 158 android:orientation="vertical" | 166 android:orientation="vertical" |
| 159 android:padding="16dp" | 167 android:padding="16dp" |
| 160 android:visibility="gone"> | 168 android:visibility="gone"> |
| 161 | 169 |
| 162 </RadioGroup> | 170 </RadioGroup> |
| 163 | 171 |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 | 292 |
| 285 <TextView | 293 <TextView |
| 286 android:id="@+id/waitingMessage" | 294 android:id="@+id/waitingMessage" |
| 287 android:layout_width="wrap_content" | 295 android:layout_width="wrap_content" |
| 288 android:layout_height="wrap_content" | 296 android:layout_height="wrap_content" |
| 289 android:text="@string/payments_processing_message" | 297 android:text="@string/payments_processing_message" |
| 290 android:textColor="@color/light_active_color" | 298 android:textColor="@color/light_active_color" |
| 291 android:textSize="20sp" /> | 299 android:textSize="20sp" /> |
| 292 </LinearLayout> | 300 </LinearLayout> |
| 293 </LinearLayout> | 301 </LinearLayout> |
| OLD | NEW |