|
@@ -25,7 +25,8 @@
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
style="@style/Widget.Material3.BottomSheet"
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="bottom"
|
|
|
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">
|
|
|
|
|
|
<LinearLayout
|
|
@@ -75,11 +76,17 @@
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
- <LinearLayout
|
|
|
- android:id="@+id/file_actions_list"
|
|
|
+ <androidx.core.widget.NestedScrollView
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:orientation="vertical" />
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/file_actions_list"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="vertical" />
|
|
|
+
|
|
|
+ </androidx.core.widget.NestedScrollView>
|
|
|
|
|
|
</LinearLayout>
|
|
|
|