2024-03-24 17:49:47 -06:00
|
|
|
<?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"
|
2024-03-29 17:37:05 -06:00
|
|
|
android:id="@+id/rootDiv"
|
2024-03-24 17:49:47 -06:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2024-03-29 17:37:05 -06:00
|
|
|
android:alpha="255"
|
|
|
|
|
android:focusable="false"
|
|
|
|
|
android:focusableInTouchMode="false"
|
|
|
|
|
tools:context=".MainActivity">
|
2024-06-24 10:31:29 -06:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/no_event_error"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2024-06-25 17:40:22 -06:00
|
|
|
android:text="No event has been specified\nPlease select one"
|
2024-06-24 10:31:29 -06:00
|
|
|
android:textAlignment="center"
|
|
|
|
|
android:textSize="20sp"
|
|
|
|
|
android:visibility="gone"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
2024-06-25 17:40:22 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
|
android:id="@+id/buttons"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_marginBottom="48dp"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/matchScoutingButton"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="Match\n scouting"
|
|
|
|
|
android:textSize="34sp"
|
|
|
|
|
app:layout_constraintBottom_toTopOf="@id/pitScoutingButton"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/pitScoutingButton"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="Pit\n Scouting"
|
|
|
|
|
android:textSize="34sp"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/matchScoutingButton" />
|
|
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
|
|
|
|
|
|
2024-03-29 17:37:05 -06:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|