Files
comaps/android/app/src/main/res/layout/bottom_sheet.xml
2025-12-13 19:28:28 +01:00

33 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<include
layout="@layout/bottom_sheet_handle" />
<androidx.fragment.app.FragmentContainerView
android:id="@+id/bottom_sheet_menu_header"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<com.google.android.material.textview.MaterialTextView
android:id="@+id/bottomSheetTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/margin_base"
android:layout_marginBottom="@dimen/margin_base"
android:layout_marginStart="@dimen/margin_base"
android:maxLines="3"
android:ellipsize="end"
android:textAppearance="@style/TextAppearance.Headline6"
tools:text="Title" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/bottomSheetMenuContainer"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>