2025-04-03 08:38:24 -06:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/buttons"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
|
android:layout_margin="5dp"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:visibility="gone"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
tools:ignore="UselessParent"
|
|
|
|
|
tools:visibility="visible">
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/button_edit"
|
|
|
|
|
android:layout_width="62dp"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:text="Edit"
|
|
|
|
|
android:textAppearance="@style/TextAppearance.MaterialComponents.Subtitle2" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
|
android:id="@+id/field_box"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
|
android:layout_margin="5dp"
|
|
|
|
|
android:background="@drawable/border"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toStartOf="@+id/buttons"
|
|
|
|
|
app:layout_constraintHorizontal_bias="0.1"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
app:layout_constraintVertical_bias="0.6"
|
|
|
|
|
tools:ignore="UselessParent">
|
|
|
|
|
|
2025-04-08 11:48:23 -06:00
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/field_display_box"
|
|
|
|
|
android:layout_width="match_parent"
|
2025-04-03 08:38:24 -06:00
|
|
|
android:layout_height="wrap_content"
|
2025-04-08 11:48:23 -06:00
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_margin="5dp"
|
2025-04-03 08:38:24 -06:00
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
2025-04-08 11:48:23 -06:00
|
|
|
</LinearLayout>
|
2025-04-03 08:38:24 -06:00
|
|
|
|
|
|
|
|
<View
|
|
|
|
|
android:id="@+id/field_background"
|
|
|
|
|
android:layout_width="match_parent"
|
2025-04-08 11:48:23 -06:00
|
|
|
android:layout_height="0dp"
|
2025-04-03 08:38:24 -06:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|