Files
RidgeScout/app/src/main/res/layout/fragment_scouting_pit.xml
T

67 lines
2.5 KiB
XML
Raw Normal View History

2024-07-26 23:48:12 -06:00
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/pit_file_indicator"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#60ff0000"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<TextView
android:id="@+id/pit_bar_team_num"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2025-03-26 10:56:05 -06:00
android:text="4388"
2024-07-26 23:48:12 -06:00
android:textAlignment="center"
android:textSize="24sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
2025-03-26 10:56:05 -06:00
android:id="@+id/pitUsername"
2024-07-26 23:48:12 -06:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2025-03-26 10:56:05 -06:00
android:text="Username"
2024-07-26 23:48:12 -06:00
app:layout_constraintBottom_toBottomOf="parent"
2025-03-26 10:56:05 -06:00
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toStartOf="@+id/pit_bar_team_num"
2024-07-26 23:48:12 -06:00
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent">
<LinearLayout
android:id="@+id/pitScoutArea"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingTop="48dp">
2025-03-24 22:29:29 -06:00
<com.ridgebotics.ridgescout.ui.TeamCard
android:id="@+id/pits_team_card"
android:layout_width="wrap_content"
2024-07-26 23:48:12 -06:00
android:layout_height="wrap_content"
2025-03-24 22:29:29 -06:00
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
2024-07-26 23:48:12 -06:00
</LinearLayout>
</ScrollView>
</androidx.constraintlayout.widget.ConstraintLayout>