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

Side by Side Diff: ui/android/java/res/layout/instrument_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 AW 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/instrument_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 <!-- TODO(estade): make this a NumberPicker? -->
26 <EditText
27 android:id="@+id/instrument_unmask_input"
28 android:inputType="number"
29 android:layout_width="match_parent"
30 android:layout_height="wrap_content"
31 android:layout_marginStart="16dp"
32 android:layout_marginEnd="16dp"
33 android:focusable="true"
34 android:focusableInTouchMode="true"
35 android:hint="@string/instrument_unmask_input_hint"
Ted C 2014/12/04 00:53:30 Add: http://developer.android.com/reference/androi
36 />
37
38 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698