12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?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">
- <com.google.android.material.textview.MaterialTextView
- android:id="@+id/title"
- style="@style/TextAppearance.MaterialComponents.Body2"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="12dp"
- android:layout_marginBottom="12dp"
- android:maxLines="1"
- android:textColor="?android:attr/textColorPrimary"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent"
- tools:text="Title" />
- <com.google.android.material.textview.MaterialTextView
- android:id="@+id/details"
- style="@style/TextAppearance.MaterialComponents.Body2"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:maxLines="1"
- android:textColor="?android:attr/textColorSecondary"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintHorizontal_bias="0.0"
- app:layout_constraintStart_toEndOf="@+id/start_barrier"
- app:layout_constraintTop_toTopOf="parent"
- tools:text="Details" />
- <ImageView
- android:layout_width="24dp"
- android:layout_height="24dp"
- android:layout_marginStart="1dp"
- android:src="@drawable/ic_expand_more_24dp"
- app:layout_constraintBottom_toBottomOf="@id/details"
- app:layout_constraintStart_toEndOf="@id/details"
- app:layout_constraintTop_toTopOf="@id/details"
- app:tint="?android:attr/textColorSecondary"
- tools:ignore="ContentDescription" />
- <androidx.constraintlayout.widget.Barrier
- android:id="@+id/start_barrier"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- app:barrierDirection="right"
- app:constraint_referenced_ids="bottom_line,title" />
- <androidx.constraintlayout.widget.Guideline
- android:id="@+id/bottom_line"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- app:layout_constraintGuide_percent="0.5" />
- </androidx.constraintlayout.widget.ConstraintLayout>
|