2
我創建了一個BottomSheetDialog
,其中有一個GridView
。當BottomSheetDialog
打開時,您可以正常滾動向下。這樣做會使BottomSheetDialog
擴展爲全屏幕並正常向下滾動GridView
。如何在BottomSheetDialog中的GridView中向上滾動?
但是當用戶試圖滾動向上;而不是滾動在GridView
,BottomSheetDialog
縮小和關閉。
我想要的是能夠在GridView
中上下滾動,而不需要更改尺寸BottomSheetDialog
。
怎麼辦?
我的代碼:
final BottomSheetDialog dialog = new BottomSheetDialog(context);
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = inflater.inflate(R.layout.grid, null);
dialog.setContentView(view);
grid.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent" android:layout_height="match_parent">
<GridView
android:background="#FFFFFF"
android:id="@+id/gridview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:numColumns="3"
android:stretchMode="columnWidth"
android:horizontalSpacing="4dp"
android:verticalSpacing="4dp"
android:gravity="center"
/>
</LinearLayout>