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

Side by Side Diff: chrome/android/java/res/layout/payment_option_line.xml

Issue 1931233002: Implement PaymentRequestUpdateEvent (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@explicit-shipping
Patch Set: Created 4 years, 7 months 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 unified diff | Download patch
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698