68 lines
2.4 KiB
XML
68 lines
2.4 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<androidx.constraintlayout.widget.ConstraintLayout 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:orientation="vertical"
|
||
|
tools:context="io.github.trytonvanmeer.libretrivia.activities.MainActivity">
|
||
|
|
||
|
<ScrollView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:fillViewport="true">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginStart="8dp"
|
||
|
android:layout_marginEnd="8dp"
|
||
|
android:orientation="vertical"
|
||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||
|
app:layout_constraintTop_toTopOf="parent">
|
||
|
|
||
|
<!-- Select Amount -->
|
||
|
<TextView
|
||
|
style="@style/TextLabel"
|
||
|
android:labelFor="@id/spinner_number"
|
||
|
android:text="@string/ui_amount" />
|
||
|
|
||
|
<Spinner
|
||
|
android:id="@+id/spinner_number"
|
||
|
style="@style/Spinner" />
|
||
|
|
||
|
<!-- Select Category Spinner -->
|
||
|
<TextView
|
||
|
style="@style/TextLabel"
|
||
|
android:labelFor="@id/spinner_category"
|
||
|
android:text="@string/ui_category" />
|
||
|
|
||
|
<Spinner
|
||
|
android:id="@+id/spinner_category"
|
||
|
style="@style/Spinner" />
|
||
|
|
||
|
<!-- Select Difficulty Spinner -->
|
||
|
<TextView
|
||
|
style="@style/TextLabel"
|
||
|
android:labelFor="@id/spinner_difficulty"
|
||
|
android:text="@string/ui_difficulty" />
|
||
|
|
||
|
<Spinner
|
||
|
android:id="@+id/spinner_difficulty"
|
||
|
style="@style/Spinner" />
|
||
|
|
||
|
<!-- Play Button -->
|
||
|
<Button
|
||
|
android:id="@+id/button_play"
|
||
|
style="@style/Button"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="16dp"
|
||
|
android:text="@string/ui_start_game"
|
||
|
android:textSize="24sp" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
</ScrollView>
|
||
|
|
||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|