85 lines
No EOL
3.1 KiB
XML
85 lines
No EOL
3.1 KiB
XML
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center_horizontal"
|
|
android:orientation="vertical"
|
|
tools:context="com.tangem.presentation.activity.PinSaveActivity">
|
|
|
|
<TextView
|
|
android:id="@+id/tvPin"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ems="10"
|
|
android:inputType="numberPassword"
|
|
android:paddingBottom="8dp"
|
|
android:singleLine="false"
|
|
android:textAlignment="center"
|
|
android:textSize="36sp"
|
|
tools:ignore="TextViewEdits" />
|
|
|
|
<TextView
|
|
android:id="@+id/tvPinPrompt"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ems="10"
|
|
android:fontFamily="@font/maax"
|
|
android:paddingBottom="16dp"
|
|
android:paddingTop="16dp"
|
|
android:text="@string/enter_pin_and_use_fingerprint_to_save_it"
|
|
android:textAlignment="center"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium" />
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<include layout="@layout/layout_pin_buttons" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_gravity="bottom"
|
|
android:orientation="vertical">
|
|
|
|
<CheckBox
|
|
android:id="@+id/cbUseFingerprint"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginBottom="4dp"
|
|
android:drawableEnd="@mipmap/ic_fp"
|
|
android:drawablePadding="8dp"
|
|
android:text="@string/protect_with_fingerprint" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="40dp"
|
|
android:layout_gravity="center_horizontal"
|
|
android:orientation="horizontal">
|
|
|
|
<Button
|
|
android:id="@+id/btnSavePIN"
|
|
style="@style/AppTheme.RoundedCornerMaterialButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="@string/save"
|
|
android:textColor="@color/white" />
|
|
|
|
<Button
|
|
android:id="@+id/btnDeletePIN"
|
|
style="@style/AppTheme.RoundedCornerMaterialButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="@string/delete"
|
|
android:textColor="@color/white" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout> |