diff options
| author | Blaster4385 <[email protected]> | 2025-05-01 17:17:44 +0530 |
|---|---|---|
| committer | Blaster4385 <[email protected]> | 2025-05-02 09:58:01 +0530 |
| commit | 34712408abd6accff0d72ff3962dded2de81396a (patch) | |
| tree | 5b8a2361a39a2d331ff16fb83050c1173d2bca9a /app/src/main/res/layout/preference_passcode.xml | |
Initial app
Diffstat (limited to 'app/src/main/res/layout/preference_passcode.xml')
| -rw-r--r-- | app/src/main/res/layout/preference_passcode.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app/src/main/res/layout/preference_passcode.xml b/app/src/main/res/layout/preference_passcode.xml new file mode 100644 index 0000000..a5fa75d --- /dev/null +++ b/app/src/main/res/layout/preference_passcode.xml @@ -0,0 +1,22 @@ +<?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/passcode_input" + android:hint="@string/preference_passcode_hint" + android:inputType="numberPassword" + android:layout_width="match_parent" + android:layout_height="wrap_content" /> + + <EditText + android:id="@+id/confirm_passcode_input" + android:hint="@string/preference_passcode_hint_confirm" + android:inputType="numberPassword" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginTop="10dp" /> +</LinearLayout>
\ No newline at end of file |