|
@@ -30,10 +30,26 @@
|
|
|
android:layout_gravity="bottom"
|
|
|
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">
|
|
|
|
|
|
- <androidx.recyclerview.widget.RecyclerView
|
|
|
- android:id="@+id/send_button_recycler_view"
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/bottom_sheet"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- tools:listitem="@layout/send_button" />
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
|
-</FrameLayout>
|
|
|
+ <com.google.android.material.bottomsheet.BottomSheetDragHandleView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+
|
|
|
+ <androidx.recyclerview.widget.RecyclerView
|
|
|
+ android:id="@+id/send_button_recycler_view"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ tools:listitem="@layout/send_button"/>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/standard_padding"/>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+</FrameLayout>
|