Files
baresip-studio/app/src/main/res/layout/password_dialog.xml
2020-04-09 16:25:57 +03:00

29 lines
1.0 KiB
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="20dp" >
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:importantForAutofill="no"
android:hint="@string/password"
android:imeOptions="actionDone"
android:inputType="textPassword" />
<CheckBox
android:id="@+id/checkbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/show_password"
android:checked="false"/>
</com.google.android.material.textfield.TextInputLayout>
</FrameLayout>