2022-06-25 21:25:03 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-10-06 18:44:06 +05:30
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2022-06-25 21:25:03 +05:30
|
|
|
android:layout_width="wrap_content"
|
2022-06-27 22:47:52 +05:30
|
|
|
android:layout_height="wrap_content"
|
2023-11-03 19:58:55 +05:30
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingTop="8dp">
|
2022-06-25 21:25:03 +05:30
|
|
|
|
2022-08-14 21:05:17 +05:30
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
|
|
style="@style/CustomDialogTextInputLayout"
|
2022-10-06 18:44:06 +05:30
|
|
|
android:hint="@string/password"
|
|
|
|
app:passwordToggleEnabled="true">
|
2022-06-25 21:25:03 +05:30
|
|
|
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
|
|
android:id="@+id/delete_password"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2022-08-14 21:05:17 +05:30
|
|
|
android:inputType="textPassword" />
|
2022-06-25 21:25:03 +05:30
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|