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"
|
2024-06-26 22:33:05 -06:00
|
|
|
android:visibility="gone"
|
2024-06-25 17:40:22 -06:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2024-06-26 22:33:05 -06:00
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
tools:visibility="gone">
|
2024-06-25 17:40:22 -06:00
|
|
|
|
|
|
|
|
<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-06-26 22:33:05 -06:00
|
|
|
<com.astatin3.scoutingapp2025.ui.scouting.matchScoutingView
|
|
|
|
|
android:id="@+id/matchScoutingView"
|
2024-06-28 15:44:38 -06:00
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="0dp"
|
2024-06-26 22:33:05 -06:00
|
|
|
android:layout_marginBottom="48dp"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2024-06-28 15:44:38 -06:00
|
|
|
app:layout_constraintHorizontal_bias="1.0"
|
2024-06-26 22:33:05 -06:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
app:layout_constraintVertical_bias="1.0">
|
|
|
|
|
|
|
|
|
|
<ScrollView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/back_button">
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/MatchScoutArea"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:paddingTop="48dp">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/team_name"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="TextView"
|
|
|
|
|
android:textAlignment="center"
|
|
|
|
|
android:textSize="24sp" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/team_description"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginBottom="20dp"
|
|
|
|
|
android:text="TextView"
|
|
|
|
|
android:textAlignment="center" />
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
</ScrollView>
|
|
|
|
|
|
2024-06-28 15:44:38 -06:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
|
android:id="@+id/file_indicator"
|
|
|
|
|
android:layout_width="match_parent"
|
2024-06-26 22:33:05 -06:00
|
|
|
android:layout_height="wrap_content"
|
2024-06-28 15:44:38 -06:00
|
|
|
app:layout_constraintBottom_toBottomOf="@id/back_button"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2024-06-26 22:33:05 -06:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2024-06-28 15:44:38 -06:00
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
android:background="#60ff0000">
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/back_button"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="Back"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/next_button"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="Next"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/alliance_pos_text"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="Temp"
|
|
|
|
|
android:textAlignment="center"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toStartOf="@+id/matchnum"
|
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/back_button"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/eventcode" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/eventcode"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="Temp"
|
|
|
|
|
android:textAlignment="center"
|
|
|
|
|
app:layout_constraintEnd_toStartOf="@+id/matchnum"
|
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/back_button"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/matchnum"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="Temp"
|
|
|
|
|
android:textAlignment="center"
|
|
|
|
|
android:textSize="24sp"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/bar_team_num"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="Temp"
|
|
|
|
|
android:textSize="24sp"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toStartOf="@+id/next_button"
|
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/matchnum"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
2024-06-26 22:33:05 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/middle_button"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="Save"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</com.astatin3.scoutingapp2025.ui.scouting.matchScoutingView>
|
|
|
|
|
|
2024-06-25 17:40:22 -06:00
|
|
|
|
2024-03-29 17:37:05 -06:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|