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

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

Issue 756333003: Prompt for unmasking Wallet credit card on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix compile post-merge Created 6 years 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
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2014 The Chromium Authors. All rights reserved.
3
4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file.
6 -->
7
8 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
9 android:layout_width="wrap_content"
10 android:layout_height="wrap_content"
11 android:orientation="vertical">
12
13 <TextView
14 android:layout_width="match_parent"
15 android:layout_height="wrap_content"
16 android:text="@string/card_unmask_prompt_content_text"
17 android:textSize="20sp"
18 android:paddingStart="5dp"
19 android:paddingEnd="5dp"
20 android:paddingBottom="5dp"
21 android:paddingTop="5dp"
22 android:gravity="start"
23 />
24
25 <EditText
26 android:id="@+id/card_unmask_input"
27 android:inputType="number"
28 android:layout_width="match_parent"
29 android:layout_height="wrap_content"
30 android:layout_marginStart="16dp"
31 android:layout_marginEnd="16dp"
32 android:focusable="true"
33 android:focusableInTouchMode="true"
34 android:hint="@string/card_unmask_input_hint"
35 />
36
37 </LinearLayout>
OLDNEW
« no previous file with comments | « tools/metrics/histograms/histograms.xml ('k') | ui/android/java/src/org/chromium/ui/autofill/CardUnmaskPrompt.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698