2017-08-05 15:15:31 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-07-01 19:44:58 +02:00
|
|
|
<androidx.core.widget.NestedScrollView
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-08-05 15:15:31 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-07-01 19:44:58 +02:00
|
|
|
android:layout_height="match_parent">
|
2020-01-11 13:36:11 +01:00
|
|
|
|
2017-08-05 15:15:31 +02:00
|
|
|
<LinearLayout
|
2020-07-01 19:44:58 +02:00
|
|
|
android:id="@+id/main"
|
2017-08-05 15:15:31 +02:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
2017-08-13 23:38:38 +02:00
|
|
|
android:layout_height="wrap_content"
|
2020-07-01 19:44:58 +02:00
|
|
|
android:padding="32dp">
|
2017-08-05 15:15:31 +02:00
|
|
|
|
2020-07-01 19:44:58 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/textView2"
|
2017-08-05 15:15:31 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-07-01 19:44:58 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/choose_authentication_method"
|
|
|
|
android:textAlignment="center"
|
|
|
|
android:textSize="24sp"
|
|
|
|
android:layout_marginTop="30dp"
|
|
|
|
android:textStyle="bold" />
|
2017-08-05 15:15:31 +02:00
|
|
|
|
2020-07-01 19:44:58 +02:00
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/authentication_method_password_explanation"
|
|
|
|
android:textColor="@color/warning_color"
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:layout_marginTop="24dp" />
|
2017-08-05 15:15:31 +02:00
|
|
|
|
2020-07-01 19:44:58 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:orientation="vertical"
|
2017-08-13 19:51:54 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-07-01 19:44:58 +02:00
|
|
|
android:layout_marginTop="24dp">
|
2020-06-16 22:50:17 +02:00
|
|
|
|
2020-07-01 19:44:58 +02:00
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
|
|
android:id="@+id/text_password_wrapper"
|
2020-06-16 22:50:17 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-07-01 19:44:58 +02:00
|
|
|
android:layout_height="wrap_content">
|
2017-08-05 15:15:31 +02:00
|
|
|
|
2020-07-01 19:44:58 +02:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/text_password"
|
|
|
|
android:hint="@string/set_password"
|
|
|
|
android:inputType="textPassword"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
2017-08-05 15:15:31 +02:00
|
|
|
|
2020-07-01 19:44:58 +02:00
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
|
|
android:id="@+id/text_password_confirm_wrapper"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="10dp">
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:hint="@string/set_password_confirm"
|
|
|
|
android:id="@+id/text_password_confirm"
|
|
|
|
android:inputType="textPassword"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progressBar"
|
|
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:max="4"
|
|
|
|
android:paddingStart="4dp"
|
|
|
|
android:paddingEnd="3.5dp" />
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/text_password_strength"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="end" />
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/check_toggle_visibility"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="5dp"
|
|
|
|
android:text="@string/show_password" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
2019-10-14 22:51:20 +02:00
|
|
|
|
2017-08-05 15:15:31 +02:00
|
|
|
</LinearLayout>
|
|
|
|
|
2020-07-01 19:44:58 +02:00
|
|
|
</androidx.core.widget.NestedScrollView>
|