| 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 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 android:textColor="#0000ff" | 213 android:textColor="#0000ff" |
| 214 android:background="#ffffff" | 214 android:background="#ffffff" |
| 215 style="?android:attr/buttonBarButtonStyle" /> | 215 style="?android:attr/buttonBarButtonStyle" /> |
| 216 | 216 |
| 217 <Button | 217 <Button |
| 218 android:id="@+id/payButton" | 218 android:id="@+id/payButton" |
| 219 android:layout_gravity="bottom" | 219 android:layout_gravity="bottom" |
| 220 android:layout_height="wrap_content" | 220 android:layout_height="wrap_content" |
| 221 android:layout_weight="1" | 221 android:layout_weight="1" |
| 222 android:layout_width="0dp" | 222 android:layout_width="0dp" |
| 223 android:enabled="false" |
| 223 android:text="@string/payments_pay_button" | 224 android:text="@string/payments_pay_button" |
| 224 android:textColor="#ffffff" | 225 android:textColor="#ffffff" |
| 225 android:background="#0000ff" | 226 android:background="#0000ff" |
| 226 style="?android:attr/buttonBarButtonStyle" /> | 227 style="?android:attr/buttonBarButtonStyle" /> |
| 227 </LinearLayout> | 228 </LinearLayout> |
| 228 | 229 |
| 229 </LinearLayout> | 230 </LinearLayout> |
| 230 | 231 |
| 231 <LinearLayout | 232 <LinearLayout |
| 232 android:id="@+id/waitingOverlay" | 233 android:id="@+id/waitingOverlay" |
| (...skipping 20 matching lines...) Expand all Loading... |
| 253 | 254 |
| 254 <TextView | 255 <TextView |
| 255 android:id="@+id/waitingMessage" | 256 android:id="@+id/waitingMessage" |
| 256 android:layout_width="wrap_content" | 257 android:layout_width="wrap_content" |
| 257 android:layout_height="wrap_content" | 258 android:layout_height="wrap_content" |
| 258 android:text="@string/payments_processing_message" | 259 android:text="@string/payments_processing_message" |
| 259 android:textColor="@color/light_active_color" | 260 android:textColor="@color/light_active_color" |
| 260 android:textSize="20sp" /> | 261 android:textSize="20sp" /> |
| 261 </LinearLayout> | 262 </LinearLayout> |
| 262 </LinearLayout> | 263 </LinearLayout> |
| OLD | NEW |