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"
|
2020-08-13 09:54:33 -04:00
|
|
|
app:behavior_peekHeight="236dp"
|
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
|
|
|
<View
|
2020-08-13 09:54:33 -04:00
|
|
|
android:id="@+id/mentions_picker_top_divider"
|
2020-07-27 09:58:58 -04:00
|
|
|
android:layout_width="match_parent"
|
2020-08-13 09:54:33 -04:00
|
|
|
android:layout_height="2dp"
|
|
|
|
android:layout_gravity="top"
|
|
|
|
android:layout_marginTop="-2dp"
|
|
|
|
android:background="@drawable/compose_divider_background"
|
|
|
|
android:visibility="gone" />
|
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"
|
2020-11-10 10:20:54 -05:00
|
|
|
android:background="@color/signal_background_dialog" />
|
2020-08-13 09:54:33 -04:00
|
|
|
|
|
|
|
</FrameLayout>
|
2020-07-27 09:58:58 -04:00
|
|
|
|
2020-08-13 09:54:33 -04:00
|
|
|
<View
|
|
|
|
android:id="@+id/mentions_picker_bottom_divider"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="2dp"
|
|
|
|
android:layout_gravity="bottom"
|
|
|
|
android:background="@drawable/compose_divider_background"
|
|
|
|
android:visibility="gone" />
|
2020-07-27 09:58:58 -04:00
|
|
|
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|