2018-03-01 17:51:37 +00:00
<?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:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<LinearLayout android:id= "@+id/header_container"
android:background="@color/signal_primary"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="center"
android:padding="40dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/white"
android:textSize="18sp"
2018-03-09 18:40:29 +00:00
android:gravity="center_horizontal"
2018-03-01 17:51:37 +00:00
android:text="@string/registration_lock_reminder_view__enter_your_registration_lock_pin"/>
</LinearLayout>
2020-08-19 00:06:26 +00:00
<com.google.android.material.textfield.TextInputLayout
2018-03-01 17:51:37 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="40dp"
2019-03-20 22:52:14 +00:00
android:paddingStart="80dp"
android:paddingEnd="80dp">
2018-03-01 17:51:37 +00:00
2020-08-19 00:06:26 +00:00
<com.google.android.material.textfield.TextInputEditText
2018-03-01 17:51:37 +00:00
android:id="@+id/pin"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="numberPassword"
android:hint="@string/registration_lock_reminder_view__enter_pin"/>
2020-08-19 00:06:26 +00:00
</com.google.android.material.textfield.TextInputLayout>
2018-03-01 17:51:37 +00:00
<TextView android:id= "@+id/reminder"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="40dp"
android:paddingBottom="40dp"
2019-03-20 22:52:14 +00:00
android:paddingStart="20dp"
android:paddingEnd="20dp"
2018-03-01 17:51:37 +00:00
android:textSize="15sp"
android:lineSpacingMultiplier="1.3"
2018-03-09 18:40:29 +00:00
tools:text="Reminder: Registration Lock is enabled for your phone number. To help you memorize your Registration Lock PIN, Signal will periodically ask you to confirm it. I forgot my PIN."/>
2018-03-01 17:51:37 +00:00
</LinearLayout>