2023-04-18 21:33:24 +02: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="wrap_content"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2023-04-20 10:05:24 +02:00
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:clickable="true"
|
|
|
|
|
android:focusable="true"
|
|
|
|
|
android:paddingHorizontal="16dp"
|
2023-04-27 20:27:42 +02:00
|
|
|
android:paddingVertical="2dp">
|
2023-04-18 21:33:24 +02:00
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
|
|
|
android:id="@+id/image_view_container"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"
|
2023-04-20 21:35:09 +02:00
|
|
|
android:gravity="center"
|
2023-04-18 21:33:24 +02:00
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"/>
|
|
|
|
|
|
|
|
|
|
<TextView
|
2023-04-20 10:05:24 +02:00
|
|
|
android:id="@+id/text_content"
|
2023-04-18 21:33:24 +02:00
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginStart="8dp"
|
2023-04-20 21:35:09 +02:00
|
|
|
android:layout_marginEnd="4dp"
|
2023-04-18 21:33:24 +02:00
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/image_view_container"
|
2023-04-20 10:05:24 +02:00
|
|
|
app:layout_constraintEnd_toStartOf="@+id/text_price"/>
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/text_price"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
android:fontFamily="@font/lato_bolditalic"/>
|
2023-04-18 21:33:24 +02:00
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|