2024-03-31 15:13:53 -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"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
tools:context=".ui.transfer.TransferFragment">
|
|
|
|
|
|
2024-07-23 22:38:37 -06:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/no_event_error"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="No event has been specified\nPlease select one"
|
|
|
|
|
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-03-31 15:13:53 -06:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
2024-07-23 22:38:37 -06:00
|
|
|
android:id="@+id/main_select_layout"
|
2024-03-31 15:13:53 -06:00
|
|
|
android:layout_width="match_parent"
|
2024-04-02 11:10:31 -06:00
|
|
|
android:layout_height="match_parent"
|
2024-06-24 10:31:29 -06:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2024-09-14 16:14:50 -06:00
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
2024-03-31 15:13:53 -06:00
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/uploadButton"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="Upload"
|
|
|
|
|
android:textSize="34sp"
|
|
|
|
|
app:layout_constraintBottom_toTopOf="@+id/downloadButton"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
2024-09-14 16:14:50 -06:00
|
|
|
<Button
|
|
|
|
|
android:id="@+id/CSVButton"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="CSV"
|
|
|
|
|
android:textSize="34sp"
|
|
|
|
|
app:layout_constraintBottom_toTopOf="@+id/downloadButton"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/uploadButton" />
|
|
|
|
|
|
2024-03-31 15:13:53 -06:00
|
|
|
<Button
|
|
|
|
|
android:id="@+id/downloadButton"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="Download"
|
|
|
|
|
android:textSize="34sp"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="@+id/TBAButton"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/uploadButton" />
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/TBAButton"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="TBA"
|
|
|
|
|
android:textSize="34sp"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/downloadButton" />
|
|
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
|