2017-08-05 15:15:31 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-08-13 19:51:54 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/main"
|
|
|
|
android:orientation="vertical"
|
2017-08-05 15:15:31 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2017-08-13 19:51:54 +02:00
|
|
|
android:padding="32dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:text="@string/authentication_method_set_password"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textSize="24sp"
|
|
|
|
android:textColor="@color/primary_text_inverted"
|
|
|
|
android:id="@+id/textView2" />
|
2017-08-05 15:15:31 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
2017-08-13 23:38:38 +02:00
|
|
|
android:layout_height="wrap_content"
|
2017-08-13 19:51:54 +02:00
|
|
|
android:layout_marginTop="12dp">
|
2017-08-05 15:15:31 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-08-13 19:51:54 +02:00
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:id="@+id/textView4"
|
|
|
|
android:text="@string/set_password"/>
|
2017-08-05 15:15:31 +02:00
|
|
|
|
2017-08-13 19:51:54 +02:00
|
|
|
<EditText
|
2017-08-05 15:15:31 +02:00
|
|
|
android:layout_width="match_parent"
|
2017-08-13 19:51:54 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textPassword"
|
|
|
|
android:ems="10"
|
|
|
|
android:id="@+id/text_password"
|
|
|
|
android:layout_below="@+id/textView3"
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:layout_alignParentEnd="true"/>
|
2017-08-05 15:15:31 +02:00
|
|
|
|
2017-08-13 19:51:54 +02:00
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/textView3"
|
|
|
|
android:text="@string/set_password_confirm"
|
|
|
|
android:layout_marginTop="20dp"
|
|
|
|
android:layout_below="@+id/textView4"
|
|
|
|
/>
|
2017-08-05 15:15:31 +02:00
|
|
|
|
2017-08-13 19:51:54 +02:00
|
|
|
<EditText
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textPassword"
|
|
|
|
android:ems="10"
|
|
|
|
android:id="@+id/text_password_confirm"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_below="@+id/textView4"
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:layout_alignParentEnd="true"/>
|
2017-08-05 15:15:31 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2017-08-13 23:38:38 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/box_fingerprint"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="20dp"
|
|
|
|
android:visibility="invisible">
|
|
|
|
|
|
|
|
<TextView
|
2018-10-09 22:27:59 +02:00
|
|
|
android:text="@string/authentication_method_fingerprint"
|
2017-08-13 23:38:38 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textSize="24sp"
|
|
|
|
android:textColor="@color/primary_text_inverted"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_marginTop="12dp">
|
|
|
|
|
2017-12-26 13:38:57 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/img_fingerprint_insert"
|
2017-08-13 23:38:38 +02:00
|
|
|
android:layout_width="60dp"
|
2017-12-26 13:38:57 +01:00
|
|
|
android:layout_height="60dp"
|
|
|
|
android:orientation="horizontal"/>
|
2017-08-13 23:38:38 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/text_fingerprint"
|
|
|
|
android:textColor="@color/primary_text_inverted"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_marginLeft="15dp"
|
2018-02-09 17:31:07 +01:00
|
|
|
android:text="@string/fingerprint_hint"/>
|
2017-08-13 23:38:38 +02:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2017-08-13 19:51:54 +02:00
|
|
|
</LinearLayout>
|