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"
|
|
|
|
|
android:text="No match 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-29 17:37:05 -06:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|