|
@@ -1,5 +1,5 @@
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
-<androidx.constraintlayout.widget.ConstraintLayout 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:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
@@ -7,40 +7,74 @@
|
|
android:orientation="vertical">
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
- <TextView
|
|
|
|
- android:id="@+id/backgroun"
|
|
|
|
- android:layout_width="321dp"
|
|
|
|
- android:layout_height="596dp"
|
|
|
|
- android:gravity="center_horizontal"
|
|
|
|
-
|
|
|
|
- android:text="@string/text_welcome"
|
|
|
|
- android:textAlignment="center"
|
|
|
|
- android:textAppearance="@style/TextAppearance.AppCompat.Body1"
|
|
|
|
- android:textSize="@dimen/text_size_welcome"
|
|
|
|
- app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
- app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
- app:layout_constraintHorizontal_bias="0.495"
|
|
|
|
- app:layout_constraintStart_toStartOf="parent"
|
|
|
|
- app:layout_constraintTop_toTopOf="parent"
|
|
|
|
- app:layout_constraintVertical_bias="0.142" />
|
|
|
|
-
|
|
|
|
- <Button
|
|
|
|
- android:id="@+id/okay_button"
|
|
|
|
- android:layout_width="wrap_content"
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
-
|
|
|
|
- android:layout_marginEnd="16dp"
|
|
|
|
-
|
|
|
|
- android:layout_marginRight="16dp"
|
|
|
|
- android:layout_marginBottom="36dp"
|
|
|
|
- android:text="@string/text_ok"
|
|
|
|
- app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
- app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
- app:layout_constraintHorizontal_bias="0.524"
|
|
|
|
- app:layout_constraintStart_toStartOf="parent"
|
|
|
|
- app:layout_constraintTop_toBottomOf="@+id/backgroun"
|
|
|
|
- app:layout_constraintVertical_bias="0.937"
|
|
|
|
- tools:ignore="MissingConstraints" />
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
|
+ <ScrollView
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
+ android:gravity="center_horizontal">
|
|
|
|
+
|
|
|
|
+ <LinearLayout
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:orientation="vertical"
|
|
|
|
+ android:gravity="top">
|
|
|
|
+
|
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+
|
|
|
|
+ android:layout_marginStart="12dp"
|
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
|
+ android:layout_marginTop="12dp"
|
|
|
|
+ android:layout_marginEnd="12dp"
|
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
|
+ android:layout_marginBottom="12dp">
|
|
|
|
+
|
|
|
|
+ <TextView
|
|
|
|
+ android:id="@+id/background"
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:gravity="center_horizontal"
|
|
|
|
+
|
|
|
|
+ android:text="@string/text_welcome"
|
|
|
|
+ android:textAlignment="center"
|
|
|
|
+ android:textAppearance="@style/TextAppearance.AppCompat.Body1"
|
|
|
|
+ android:textSize="@dimen/text_size_welcome"
|
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
+ app:layout_constraintHorizontal_bias="0.495"
|
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
|
+ app:layout_constraintVertical_bias="0.142" />
|
|
|
|
+
|
|
|
|
+ <Button
|
|
|
|
+ android:id="@+id/okay_button"
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+
|
|
|
|
+ android:layout_marginEnd="16dp"
|
|
|
|
+
|
|
|
|
+ android:layout_marginRight="16dp"
|
|
|
|
+ android:layout_marginBottom="36dp"
|
|
|
|
+ android:text="@string/text_ok"
|
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
+ app:layout_constraintHorizontal_bias="0.524"
|
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/background"
|
|
|
|
+ app:layout_constraintVertical_bias="0.937"
|
|
|
|
+ tools:ignore="MissingConstraints" />
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
+
|
|
|
|
+ </LinearLayout>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ </ScrollView>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+</LinearLayout>
|