2018-02-26 17:58:18 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="16dp">
|
|
|
|
|
2020-08-19 00:06:26 +00:00
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
2018-02-26 17:58:18 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
2020-08-19 00:06:26 +00:00
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
2018-02-26 17:58:18 +00:00
|
|
|
android:id="@+id/restore_passphrase_input"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:hint="@string/enter_backup_passphrase_dialog__backup_passphrase"
|
|
|
|
android:imeOptions="actionDone"
|
2018-03-13 16:28:27 +00:00
|
|
|
android:inputType="number" />
|
2018-02-26 17:58:18 +00:00
|
|
|
|
2020-08-19 00:06:26 +00:00
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
2018-02-26 17:58:18 +00:00
|
|
|
</FrameLayout>
|