mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 10:35:19 +00:00
20 lines
856 B
XML
20 lines
856 B
XML
|
<?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">
|
||
|
|
||
|
<android.support.design.widget.TextInputLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content">
|
||
|
|
||
|
<AutoCompleteTextView
|
||
|
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"
|
||
|
android:inputType="textVisiblePassword" />
|
||
|
|
||
|
</android.support.design.widget.TextInputLayout>
|
||
|
</FrameLayout>
|