OLD | NEW |
---|---|
(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 <!-- TODO(estade): make this a NumberPicker? --> | |
Ted C
2014/12/10 22:04:59
I would remove this TODO as I don't think you'll e
Evan Stade
2014/12/10 23:46:20
Done.
| |
26 <EditText | |
27 android:id="@+id/card_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/card_unmask_input_hint" | |
36 /> | |
37 | |
38 </LinearLayout> | |
OLD | NEW |