Added radio buttons and instructions

This commit is contained in:
wildercayden 2025-02-14 14:18:46 -05:00 committed by GitHub
parent 7d2b776caf
commit 05e2a5375b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -89,17 +89,65 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:hint="Team number" android:hint="Team number"
app:layout_constraintBottom_toTopOf="@+id/textInputLayout2" app:layout_constraintBottom_toTopOf="@+id/textInputLayout2"
app:layout_constraintTop_toBottomOf="@+id/textInputLayout3" app:layout_constraintEnd_toEndOf="parent"
tools:layout_editor_absoluteX="-16dp" /> app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/textInputLayout" />
<Button <Button
android:id="@+id/Submit_button" android:id="@+id/Submit_button"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="Submit" android:text="Submit Unuploaded data"
app:layout_constraintBottom_toTopOf="@+id/nextButton"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/textInputLayout2" />
<RadioGroup
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginStart="100dp"
android:layout_marginEnd="100dp"
app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/nextButton" /> app:layout_constraintTop_toBottomOf="@+id/nextButton">
<RadioButton
android:id="@+id/Rbutton1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Starting Postion 1" />
<RadioButton
android:id="@+id/Rbutton2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Starting Postion 2" />
<RadioButton
android:id="@+id/Rbutton3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Starting Postion 3" />
<RadioButton
android:id="@+id/Rbutton4"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Starting Postion 4" />
<RadioButton
android:id="@+id/Rbutton5"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Starting Postion 5" />
<TextView
android:id="@+id/Explain"
android:layout_width="match_parent"
android:layout_height="98dp"
android:text="To upload old data enter the Info at the top, and it is case sentitive" />
</RadioGroup>
</androidx.constraintlayout.widget.ConstraintLayout> </androidx.constraintlayout.widget.ConstraintLayout>