blob: 54f48127b24d27ac26ce5e248e05d80ef3e49431 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:padding="20dp"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/settings_passcode_input"
android:hint="@string/preference_passcode_hint"
android:inputType="numberPassword"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
|