Fixed next button

This commit is contained in:
wildercayden 2025-03-03 12:02:48 -05:00 committed by GitHub
parent f18f608a94
commit 74f560e207
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,7 +2,7 @@
<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:id="@+id/Matchunused"
android:id="@+id/Match"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
@ -47,14 +47,14 @@
android:id="@+id/TeamNumber"
android:layout_width="0dp"
android:layout_height="45dp"
android:layout_marginBottom="50dp"
android:ems="10"
android:hint="Team Number"
android:inputType="number"
app:layout_constraintBottom_toTopOf="@+id/Submit_button"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/Match" />
app:layout_constraintTop_toBottomOf="@+id/textInputLayout2" />
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/textInputLayout2"
@ -68,7 +68,7 @@
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/Match"
android:id="@+id/Matchedit"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Match"
@ -83,9 +83,9 @@
android:layout_height="wrap_content"
android:text="@string/Event"
android:textSize="34sp"
app:layout_constraintBottom_toTopOf="@+id/Match"
app:layout_constraintBottom_toTopOf="@+id/Matchedit"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
app:layout_constraintTop_toBottomOf="@+id/nextButton" />
</androidx.constraintlayout.widget.ConstraintLayout>