45 lines
1.7 KiB
XML
45 lines
1.7 KiB
XML
<?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"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<androidx.constraintlayout.widget.Group
|
|
android:id="@+id/section_group"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:visibility="gone"
|
|
app:constraint_referenced_ids="title, title_divider"
|
|
tools:visibility="visible" />
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="@dimen/margin_small"
|
|
android:textAppearance="?textAppearanceHeadline6"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
tools:text="Meat a very long and weird title that someone might have for some reason" />
|
|
|
|
<View
|
|
android:id="@+id/title_divider"
|
|
android:layout_width="0dp"
|
|
android:layout_height="1dp"
|
|
android:alpha="0.3"
|
|
android:background="?colorOnSurface"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@id/title" />
|
|
|
|
<CheckBox
|
|
android:id="@+id/checkBox"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@id/title_divider"
|
|
tools:text="900 g braising steak/stew meat, cubed into 2.5cm pieces" />
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |