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

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

Issue 1137623006: [android] Handle re-issued cards in unmasking prompt. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: self review Created 5 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 <!-- Copyright 2014 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2014 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 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:layout_width="wrap_content" 9 android:layout_width="wrap_content"
10 android:layout_height="wrap_content"> 10 android:layout_height="wrap_content">
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 android:orientation="horizontal"> 61 android:orientation="horizontal">
62 62
63 <LinearLayout 63 <LinearLayout
64 android:id="@+id/expiration_container" 64 android:id="@+id/expiration_container"
65 android:layout_width="wrap_content" 65 android:layout_width="wrap_content"
66 android:layout_height="wrap_content" 66 android:layout_height="wrap_content"
67 android:layout_marginEnd="24dp" 67 android:layout_marginEnd="24dp"
68 android:orientation="horizontal" 68 android:orientation="horizontal"
69 android:visibility="gone"> 69 android:visibility="gone">
70 70
71 <EditText 71 <EditText
aurimas (slooooooooow) 2015/05/18 20:41:12 Just a random comment: can you try long pressing o
Evan Stade 2015/05/18 22:25:45 yep, that happens
72 android:id="@+id/expiration_month" 72 android:id="@+id/expiration_month"
73 android:layout_width="wrap_content" 73 android:layout_width="wrap_content"
74 android:layout_height="wrap_content" 74 android:layout_height="wrap_content"
75 android:layout_marginStart="16dp" 75 android:layout_marginStart="16dp"
76 android:width="50sp" 76 android:width="50sp"
77 android:maxLength="2" 77 android:maxLength="2"
78 android:gravity="center_horizontal" 78 android:gravity="center_horizontal"
79 android:inputType="number" 79 android:inputType="number"
80 android:hint="@string/card_unmask_month_hint" /> 80 android:hint="@string/card_unmask_month_hint" />
81 81
(...skipping 23 matching lines...) Expand all
105 android:hint="@string/card_unmask_input_hint" /> 105 android:hint="@string/card_unmask_input_hint" />
106 106
107 <ImageView 107 <ImageView
108 android:id="@+id/cvc_hint_image" 108 android:id="@+id/cvc_hint_image"
109 android:layout_width="wrap_content" 109 android:layout_width="wrap_content"
110 android:layout_height="wrap_content" 110 android:layout_height="wrap_content"
111 android:layout_gravity="center_vertical" 111 android:layout_gravity="center_vertical"
112 android:layout_marginStart="8dp" 112 android:layout_marginStart="8dp"
113 android:layout_marginEnd="16dp" 113 android:layout_marginEnd="16dp"
114 android:contentDescription="@null" /> 114 android:contentDescription="@null" />
115
116 <TextView
117 android:id="@+id/new_card_link"
118 android:layout_width="wrap_content"
119 android:layout_height="wrap_content"
120 android:singleLine="true"
121 android:textColor="@color/light_active_color"
122 android:text="@string/autofill_card_unmask_new_card_link"
123 android:visibility="gone" />
115 </LinearLayout> 124 </LinearLayout>
116 125
117 <TextView 126 <TextView
118 android:id="@+id/error_message" 127 android:id="@+id/error_message"
119 android:layout_width="match_parent" 128 android:layout_width="match_parent"
120 android:layout_height="wrap_content" 129 android:layout_height="wrap_content"
121 android:layout_marginStart="24dp" 130 android:layout_marginStart="24dp"
122 android:layout_marginEnd="24dp" 131 android:layout_marginEnd="24dp"
123 android:gravity="start" 132 android:gravity="start"
124 android:textSize="12sp" 133 android:textSize="12sp"
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 android:contentDescription="@null" /> 196 android:contentDescription="@null" />
188 197
189 <TextView 198 <TextView
190 android:id="@+id/verification_message" 199 android:id="@+id/verification_message"
191 android:layout_width="wrap_content" 200 android:layout_width="wrap_content"
192 android:layout_height="wrap_content" 201 android:layout_height="wrap_content"
193 android:textColor="@color/light_active_color" 202 android:textColor="@color/light_active_color"
194 android:textSize="20sp" /> 203 android:textSize="20sp" />
195 </LinearLayout> 204 </LinearLayout>
196 </RelativeLayout> 205 </RelativeLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698