2024-05-03 21:10:08 -06:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2024-06-24 10:31:29 -06:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2024-05-03 21:10:08 -06:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
2024-07-01 21:49:34 -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"
|
2024-07-18 11:57:30 -06:00
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
tools:visibility="gone">
|
2024-07-01 21:49:34 -06:00
|
|
|
|
|
|
|
|
<Button
|
2024-07-03 19:31:20 -06:00
|
|
|
android:id="@+id/status_button"
|
2024-07-01 21:49:34 -06:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2024-07-04 20:55:29 -06:00
|
|
|
android:text="status"
|
2024-07-01 21:49:34 -06:00
|
|
|
android:textSize="34sp"
|
2024-07-04 20:55:29 -06:00
|
|
|
app:layout_constraintBottom_toTopOf="@+id/teamsButton"
|
2024-07-01 21:49:34 -06:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
app:layout_constraintVertical_bias="0.307" />
|
|
|
|
|
|
|
|
|
|
<Button
|
2024-07-04 20:55:29 -06:00
|
|
|
android:id="@+id/teamsButton"
|
2024-07-01 21:49:34 -06:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2024-07-04 20:55:29 -06:00
|
|
|
android:text="teams"
|
2024-07-01 21:49:34 -06:00
|
|
|
android:textSize="34sp"
|
2024-07-18 11:57:30 -06:00
|
|
|
app:layout_constraintBottom_toTopOf="@id/compileButton"
|
2024-07-01 21:49:34 -06:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2024-07-18 11:57:30 -06:00
|
|
|
app:layout_constraintTop_toBottomOf="@id/status_button" />
|
2024-07-01 21:49:34 -06:00
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/compileButton"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="Compile"
|
|
|
|
|
android:textSize="34sp"
|
2024-07-06 22:35:00 -06:00
|
|
|
app:layout_constraintBottom_toTopOf="@+id/fieldsButton"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/teamsButton" />
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/fieldsButton"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="Fields"
|
|
|
|
|
android:textSize="34sp"
|
2024-07-01 21:49:34 -06:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2024-07-06 22:35:00 -06:00
|
|
|
app:layout_constraintTop_toBottomOf="@+id/compileButton"
|
2024-07-01 21:49:34 -06:00
|
|
|
app:layout_constraintVertical_bias="0.689" />
|
|
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
|
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-07-03 19:31:20 -06:00
|
|
|
<com.astatin3.scoutingapp2025.ui.data.statusView
|
2024-07-04 20:55:29 -06:00
|
|
|
android:id="@+id/statusView"
|
2024-06-24 10:31:29 -06:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_marginBottom="60dp"
|
2024-07-04 20:55:29 -06:00
|
|
|
android:visibility="gone"
|
2024-06-24 10:31:29 -06:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
|
|
|
|
<TableLayout
|
|
|
|
|
android:id="@+id/matchTable"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
2024-07-03 19:31:20 -06:00
|
|
|
</com.astatin3.scoutingapp2025.ui.data.statusView>
|
2024-06-24 10:31:29 -06:00
|
|
|
|
2024-07-03 19:31:20 -06:00
|
|
|
<com.astatin3.scoutingapp2025.ui.data.teamsView
|
2024-07-04 20:55:29 -06:00
|
|
|
android:id="@+id/teamsView"
|
2024-06-24 10:31:29 -06:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2024-07-01 21:49:34 -06:00
|
|
|
android:layout_marginBottom="60dp"
|
2024-07-04 20:55:29 -06:00
|
|
|
android:visibility="gone"
|
2024-06-24 10:31:29 -06:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2024-07-26 23:48:12 -06:00
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
tools:visibility="gone">
|
2024-06-24 10:31:29 -06:00
|
|
|
|
2024-07-01 21:49:34 -06:00
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:orientation="vertical"
|
2024-06-24 10:31:29 -06:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2024-07-01 21:49:34 -06:00
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
2024-06-24 10:31:29 -06:00
|
|
|
|
2024-07-02 15:42:43 -06:00
|
|
|
<ScrollView
|
2024-07-04 20:55:29 -06:00
|
|
|
android:id="@+id/teamsArea"
|
2024-07-02 15:42:43 -06:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
2024-07-04 20:55:29 -06:00
|
|
|
<!-- <TableLayout-->
|
|
|
|
|
<!-- android:id="@+id/searchTable"-->
|
|
|
|
|
<!-- android:layout_width="match_parent"-->
|
|
|
|
|
<!-- android:layout_height="wrap_content" />-->
|
2024-07-02 15:42:43 -06:00
|
|
|
|
|
|
|
|
</ScrollView>
|
2024-06-24 10:31:29 -06:00
|
|
|
|
2024-07-01 21:49:34 -06:00
|
|
|
</LinearLayout>
|
2024-07-03 19:31:20 -06:00
|
|
|
</com.astatin3.scoutingapp2025.ui.data.teamsView>
|
2024-06-24 10:31:29 -06:00
|
|
|
|
2024-07-06 22:35:00 -06:00
|
|
|
<com.astatin3.scoutingapp2025.ui.data.fieldsView
|
|
|
|
|
android:id="@+id/fieldsView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_marginBottom="60dp"
|
2024-07-26 23:48:12 -06:00
|
|
|
android:visibility="visible"
|
2024-07-06 22:35:00 -06:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2024-07-24 23:41:00 -06:00
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2024-07-26 23:48:12 -06:00
|
|
|
tools:visibility="visible">
|
2024-07-06 22:35:00 -06:00
|
|
|
|
2024-07-18 11:57:30 -06:00
|
|
|
<Button
|
|
|
|
|
android:id="@+id/add_button"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="+"
|
|
|
|
|
android:textSize="48sp"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent" />
|
|
|
|
|
|
2024-07-06 22:35:00 -06:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
|
android:id="@+id/fields_select_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="Matches"
|
|
|
|
|
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="Pits"
|
|
|
|
|
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>
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
2024-07-18 11:57:30 -06:00
|
|
|
android:id="@+id/linearLayout"
|
2024-07-06 22:35:00 -06:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
|
|
|
|
<ScrollView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
2024-07-23 12:27:45 -06:00
|
|
|
<com.astatin3.scoutingapp2025.utility.ReorderableTableLayout
|
2024-07-06 22:35:00 -06:00
|
|
|
android:id="@+id/fieldsArea"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
2024-07-23 12:27:45 -06:00
|
|
|
</com.astatin3.scoutingapp2025.utility.ReorderableTableLayout>
|
2024-07-06 22:35:00 -06:00
|
|
|
|
|
|
|
|
<!-- <TableLayout-->
|
|
|
|
|
<!-- android:id="@+id/searchTable"-->
|
|
|
|
|
<!-- android:layout_width="match_parent"-->
|
|
|
|
|
<!-- android:layout_height="wrap_content" />-->
|
|
|
|
|
|
|
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</com.astatin3.scoutingapp2025.ui.data.fieldsView>
|
|
|
|
|
|
|
|
|
|
|
2024-05-03 21:10:08 -06:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|