|
|
|
@ -1,4 +1,5 @@
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
<LinearLayout
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
@ -13,25 +14,30 @@
|
|
|
|
|
<EditText
|
|
|
|
|
android:id="@+id/et_1"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="50dp"
|
|
|
|
|
android:layout_height="60dp"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:hint="@string/inputPassword"
|
|
|
|
|
android:inputType="textPassword"
|
|
|
|
|
android:maxLines="1"
|
|
|
|
|
android:padding="5dp" />
|
|
|
|
|
android:padding="10dp"/>
|
|
|
|
|
|
|
|
|
|
<View
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="20dp"/>
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
|
android:id="@+id/btn_pwd"
|
|
|
|
|
android:layout_width="100dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="20dp"
|
|
|
|
|
android:text="@string/open" />
|
|
|
|
|
android:layout_width="200dp"
|
|
|
|
|
android:layout_height="50dp"
|
|
|
|
|
android:text="@string/open"/>
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/btn_fingerprint"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="20dp"
|
|
|
|
|
android:text="@string/finger" />
|
|
|
|
|
<View
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="20dp"/>
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
|
android:id="@+id/btn_fingerprint"
|
|
|
|
|
android:layout_width="200dp"
|
|
|
|
|
android:layout_height="50dp"
|
|
|
|
|
android:text="@string/finger"/>
|
|
|
|
|
</LinearLayout>
|