2024-07-28 15:49:44 -06:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2024-08-22 12:52:21 -06:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2024-07-28 15:49:44 -06:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
|
|
2024-08-22 12:52:21 -06:00
|
|
|
|
2024-07-28 15:49:44 -06:00
|
|
|
<Button
|
2024-08-22 12:52:21 -06:00
|
|
|
android:id="@+id/save_button"
|
2024-07-28 15:49:44 -06:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2024-08-22 12:52:21 -06:00
|
|
|
android:text="Save"
|
|
|
|
|
android:textSize="20sp"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent" />
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/up_button"
|
|
|
|
|
android:layout_width="60dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="↑"
|
|
|
|
|
android:textSize="30sp"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/add_button" />
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/add_button"
|
|
|
|
|
android:layout_width="60dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
2024-07-28 15:49:44 -06:00
|
|
|
android:text="+"
|
2024-08-22 12:52:21 -06:00
|
|
|
android:textSize="30sp"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent" />
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/down_button"
|
|
|
|
|
android:layout_width="60dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="↓"
|
|
|
|
|
android:textSize="30sp"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toStartOf="@id/add_button" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/edit_button"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="Edit"
|
|
|
|
|
android:textSize="20sp"
|
2024-07-28 15:49:44 -06:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent" />
|
|
|
|
|
|
2024-09-13 21:53:23 -06:00
|
|
|
<Button
|
|
|
|
|
android:id="@+id/cancel_edit_button"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="Cancel"
|
|
|
|
|
android:textSize="20sp"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent" />
|
|
|
|
|
|
2024-08-22 12:52:21 -06:00
|
|
|
|
2024-09-11 16:02:08 -06:00
|
|
|
<Button
|
|
|
|
|
android:id="@+id/revert_version_button"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="Revert\nVersions"
|
|
|
|
|
android:textSize="20sp"
|
|
|
|
|
android:visibility="gone"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
tools:visibility="gone" />
|
2024-08-22 12:52:21 -06:00
|
|
|
|
2024-07-28 15:49:44 -06:00
|
|
|
<LinearLayout
|
2024-09-11 16:02:08 -06:00
|
|
|
android:id="@+id/linearLayout_values"
|
2024-07-28 15:49:44 -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">
|
|
|
|
|
|
|
|
|
|
<com.astatin3.scoutingapp2025.utility.ReorderableTableLayout
|
|
|
|
|
android:id="@+id/fieldsArea"
|
|
|
|
|
android:layout_width="match_parent"
|
2024-09-13 21:53:23 -06:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_marginBottom="60dp">
|
2024-07-28 15:49:44 -06:00
|
|
|
|
|
|
|
|
</com.astatin3.scoutingapp2025.utility.ReorderableTableLayout>
|
|
|
|
|
</ScrollView>
|
2024-09-11 16:02:08 -06:00
|
|
|
</LinearLayout>
|
2024-07-28 15:49:44 -06:00
|
|
|
|
2024-09-11 16:02:08 -06:00
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/value_edit_container"
|
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:background="?android:attr/windowBackground"
|
|
|
|
|
android:alpha="0.85"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
|
|
|
|
<ScrollView
|
|
|
|
|
android:id="@+id/value_edit_scrollview"
|
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
|
|
|
|
<TableLayout
|
|
|
|
|
android:id="@+id/Value_edit_table"
|
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
|
|
|
|
</TableLayout>
|
|
|
|
|
</ScrollView>
|
2024-07-28 15:49:44 -06:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
2024-09-11 16:02:08 -06:00
|
|
|
|
2024-07-28 15:49:44 -06:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|