Signal-Android/app/src/main/res/layout/mentions_picker_fragment.xml

28 lines
1.1 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
2022-08-09 13:29:04 -03:00
xmlns:tools="http://schemas.android.com/tools"
tools:viewBindingIgnore="true"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipChildren="false">
<FrameLayout
android:id="@+id/mentions_picker_bottom_sheet"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
2022-08-01 10:55:40 -04:00
app:behavior_peekHeight="216dp"
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/mentions_picker_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2022-08-01 10:55:40 -04:00
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
android:background="@color/signal_colorSurface1" />
</FrameLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>