Archived
57 lines
2.0 KiB
XML
57 lines
2.0 KiB
XML
<?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"
|
|
android:paddingTop="16dp"
|
|
android:paddingBottom="16dp"
|
|
android:paddingHorizontal="24dp"
|
|
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">
|
|
|
|
<TextView
|
|
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"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="22sp"
|
|
android:fontFamily="@font/lato_bolditalic"
|
|
android:layout_marginBottom="8dp"/>
|
|
|
|
<!-- <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"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_marginBottom="8dp"/>
|
|
|
|
<TextView
|
|
android:id="@+id/text_content"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="8dp"/>
|
|
<!-- android:textSize="16sp"-->
|
|
|
|
<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>-->
|
|
|
|
</LinearLayout> |