从BottomSheetDialog获取BottomSheetBehaviour

时间:2016-05-19 11:46:20

标签: android android-layout grid-layout bottom-sheet

这是BottomSheetDialog的布局。我内部也有网格布局。网格布局的滚动不正确。我的意思是它只在BottomSheetDialog的展开状态下滚动。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    app:layout_behavior="@string/bottom_sheet_behavior"
    >

    <LinearLayout
        android:id="@+id/ll"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="@dimen/view_padding_medium"
        android:gravity="center_vertical">

        <ImageView
            android:layout_width="@dimen/profile_image"
            android:layout_height="@dimen/profile_image"
            android:src="@drawable/icon" />

        <TextView
            android:id="@+id/title1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="@dimen/view_padding_medium"
            android:text="@string/smart_action_share"
            android:textColor="@color/white"
             />
    </LinearLayout>



    <GridView
        android:id="@+id/gridView11"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:numColumns="3"
        >

    </GridView>


</LinearLayout>

这是我创建底部工作表对话框的方式:

BottomSheetDialog bottomSheetDialog = new BottomSheetDialog(context);
        LayoutInflater inflater = ((Activity) Constants.getContext()).getLayoutInflater();

        View view = inflater.inflate(R.layout.dialog_share1, null);

        bottomSheetDialog.setContentView(view);

    final GridView grid = (GridView) view.findViewById(R.id.gridView11);

    CustomAdapter adapter = new CustomAdapter (context);
    grid.setAdapter(adapter);

    bottomSheetDialog.show();

如何访问对话框的行为以便我可以修复网格布局滚动还是有其他方法来修复它?

只是为了让一切都清楚: 无论底部纸张的状态如何,都应该每次启用网格视图滚动。

2 个答案:

答案 0 :(得分:5)

  

每次都应启用网格视图滚动,而不管状态如何   底页。

我不认为你应该这样做,因为BottomSheet高度应该与内容的高度相匹配。

这意味着如果内容可滚动并超出父级的高度,滚动仅在BottomSheet因默认行为而展开时才有效,这是有道理的。

要访问此行为,您可以执行以下操作:

View view = inflater.inflate(R.layout.dialog_share1, null);
bottomSheetDialog.setContentView(view);

BottomSheetBehavior behavior = BottomSheetBehavior.from((View) view.getParent());

然后,自定义与扩展不同的状态的行为:

behavior.setBottomSheetCallback(new BottomSheetBehavior.BottomSheetCallback() {

    @Override
    public void onStateChanged(@NonNull View bottomSheet,
            @BottomSheetBehavior.State int newState) {
        if (newState == BottomSheetBehavior.STATE_HIDDEN) {
            dismiss();
        }else{
            if (newState != BottomSheetBehavior.STATE_EXPANDED) {
                // Implement your logic here
            }
        }
    }

    @Override
    public void onSlide(@NonNull View bottomSheet, float slideOffset){

    }
};

答案 1 :(得分:-1)

你可以做(​​Kotlin):

    val params = ((view.parent as View).layoutParams as CoordinatorLayout.LayoutParams)
    val behavior = params.behavior

    if (behavior is BottomSheetBehavior) {
        behavior.doStuff()
    }