2020-07-27 09:58:58 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
2020-08-13 09:54:33 -04:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:clipChildren="false">
|
2020-07-27 09:58:58 -04:00
|
|
|
|
2020-08-13 09:54:33 -04:00
|
|
|
<FrameLayout
|
2020-07-27 09:58:58 -04:00
|
|
|
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"
|
2020-07-27 09:58:58 -04:00
|
|
|
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">
|
2020-08-13 09:54:33 -04:00
|
|
|
|
2020-07-27 09:58:58 -04:00
|
|
|
<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" />
|
2020-08-13 09:54:33 -04:00
|
|
|
|
|
|
|
</FrameLayout>
|
2020-07-27 09:58:58 -04:00
|
|
|
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|