2023-04-23 17:13:48 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2023-04-24 11:21:52 +02:00
|
|
|
android:paddingBottom="16dp"
|
|
|
|
|
android:paddingHorizontal="24dp"
|
2023-04-23 17:13:48 +02:00
|
|
|
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">
|
|
|
|
|
|
2023-04-24 15:43:42 +02:00
|
|
|
<com.google.android.material.bottomsheet.BottomSheetDragHandleView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center"/>
|
|
|
|
|
|
2023-04-23 17:13:48 +02:00
|
|
|
<TextView
|
2023-04-24 11:21:52 +02:00
|
|
|
android:id="@+id/text_category"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:textSize="22sp"
|
|
|
|
|
android:fontFamily="@font/lato_blackitalic"
|
|
|
|
|
android:layout_marginBottom="2dp"/>
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/text_title"
|
2023-04-23 17:13:48 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:textSize="22sp"
|
|
|
|
|
android:fontFamily="@font/lato_bolditalic"
|
2023-04-24 11:21:52 +02:00
|
|
|
android:layout_marginBottom="8dp"/>
|
2023-04-23 17:13:48 +02:00
|
|
|
|
2023-04-24 11:21:52 +02:00
|
|
|
<!-- <androidx.core.widget.NestedScrollView-->
|
|
|
|
|
<!-- android:layout_width="match_parent"-->
|
|
|
|
|
<!-- android:layout_height="wrap_content"-->
|
|
|
|
|
<!-- android:scrollbars="vertical">-->
|
|
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
|
|
|
android:id="@+id/container_preferences"
|
2023-04-23 17:13:48 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2023-04-24 11:21:52 +02:00
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_marginBottom="8dp"/>
|
2023-04-23 17:13:48 +02:00
|
|
|
|
2023-04-24 11:21:52 +02:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/text_content"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginBottom="8dp"/>
|
|
|
|
|
<!-- android:textSize="16sp"-->
|
2023-04-23 17:13:48 +02:00
|
|
|
|
2023-04-24 11:21:52 +02:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/text_price"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:textSize="20sp"
|
|
|
|
|
android:fontFamily="@font/lato_bolditalic"
|
|
|
|
|
android:layout_marginTop="4dp"/>
|
|
|
|
|
|
|
|
|
|
<!-- </androidx.core.widget.NestedScrollView>-->
|
2023-04-23 17:13:48 +02:00
|
|
|
|
|
|
|
|
</LinearLayout>
|