79 lines
2.8 KiB
XML
79 lines
2.8 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/header_container"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:background="@color/signal_primary"
|
||
|
android:gravity="center"
|
||
|
android:orientation="horizontal"
|
||
|
android:padding="40dp">
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:gravity="center_horizontal"
|
||
|
android:text="@string/KbsReminderDialog__enter_your_signal_pin"
|
||
|
android:textColor="@color/white"
|
||
|
android:textSize="18sp" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
<com.google.android.material.textfield.TextInputLayout
|
||
|
android:id="@+id/pin_wrapper"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:paddingStart="80dp"
|
||
|
android:paddingTop="40dp"
|
||
|
android:paddingEnd="80dp">
|
||
|
|
||
|
<com.google.android.material.textfield.TextInputEditText
|
||
|
android:id="@+id/pin"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:gravity="center"
|
||
|
android:textColor="?attr/registration_lock_reminder_view_pin_text_color" />
|
||
|
|
||
|
</com.google.android.material.textfield.TextInputLayout>
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/reminder"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:lineSpacingMultiplier="1.3"
|
||
|
android:paddingStart="20dp"
|
||
|
android:paddingTop="40dp"
|
||
|
android:paddingEnd="20dp"
|
||
|
android:paddingBottom="40dp"
|
||
|
android:textSize="15sp"
|
||
|
tools:text="@string/KbsReminderDialog__to_help_you_memorize_your_pin" />
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:gravity="end"
|
||
|
android:orientation="horizontal"
|
||
|
android:paddingEnd="20dp"
|
||
|
android:paddingBottom="20dp">
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/skip"
|
||
|
style="@style/Button.Borderless"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/KbsReminderDialog__skip" />
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/submit"
|
||
|
style="@style/Button.Primary"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/KbsReminderDialog__submit" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
</LinearLayout>
|