forked from github/wulkanowy-mirror
129 lines
5.7 KiB
XML
129 lines
5.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView 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"
|
|
android:layout_height="match_parent"
|
|
android:fillViewport="true">
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:id="@+id/auth_form"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<TextView
|
|
android:id="@+id/auth_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="24dp"
|
|
android:layout_marginTop="32dp"
|
|
android:text="@string/auth_title"
|
|
android:textSize="24sp"
|
|
android:textStyle="bold"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
<TextView
|
|
android:id="@+id/auth_description"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="24dp"
|
|
android:layout_marginTop="8dp"
|
|
android:textSize="16sp"
|
|
app:layout_constraintTop_toBottomOf="@id/auth_title"
|
|
app:lineHeight="24sp"
|
|
tools:text="@string/auth_description" />
|
|
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:id="@+id/auth_input_layout"
|
|
style="@style/Widget.Material3.TextInputLayout.OutlinedBox"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="24dp"
|
|
android:layout_marginTop="24dp"
|
|
android:hint="@string/auth_pesel"
|
|
app:errorEnabled="true"
|
|
app:layout_constraintTop_toBottomOf="@id/auth_description">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/auth_input"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:inputType="numberDecimal"
|
|
android:maxLength="11" />
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/auth_button"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="24dp"
|
|
android:layout_marginTop="24dp"
|
|
android:layout_marginBottom="8dp"
|
|
android:text="@string/auth_button"
|
|
app:layout_constraintBottom_toTopOf="@id/auth_button_skip"
|
|
app:layout_constraintTop_toBottomOf="@id/auth_input_layout"
|
|
app:layout_constraintVertical_bias="1" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/auth_button_skip"
|
|
style="@style/Widget.Material3.Button.OutlinedButton"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="24dp"
|
|
android:text="@string/auth_button_skip"
|
|
app:layout_constraintBottom_toBottomOf="parent" />
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:id="@+id/auth_success"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<ImageView
|
|
android:id="@+id/auth_success_icon"
|
|
android:layout_width="62dp"
|
|
android:layout_height="62dp"
|
|
android:layout_marginTop="220dp"
|
|
android:importantForAccessibility="no"
|
|
android:src="@drawable/ic_auth_success"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:tint="?colorOnBackground" />
|
|
|
|
<TextView
|
|
android:id="@+id/auth_success_description"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="24dp"
|
|
android:layout_marginTop="24dp"
|
|
android:gravity="center"
|
|
android:text="@string/auth_success"
|
|
android:textSize="24sp"
|
|
app:layout_constraintTop_toBottomOf="@id/auth_success_icon"
|
|
app:lineHeight="32sp" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/auth_success_button"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="24dp"
|
|
android:text="@android:string/ok"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@id/auth_success_description"
|
|
app:layout_constraintVertical_bias="1" />
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
<ProgressBar
|
|
android:id="@+id/auth_progress"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center" />
|
|
</FrameLayout>
|
|
</ScrollView>
|