2022-11-20 BottomSheetDialogFragment 底部显示不全

@Override

public void onStart() {

super.onStart();

final View view = getView();

view.post(() -> {

View parent = (View)view.getParent();

CoordinatorLayout.LayoutParams params = (CoordinatorLayout.LayoutParams) (parent).getLayoutParams();

CoordinatorLayout.Behavior behavior =params.getBehavior();

BottomSheetBehavior mBottomSheetBehavior = (BottomSheetBehavior)behavior;

mBottomSheetBehavior.setHideable(false);

// 解决底部显示不全的问题

mBottomSheetBehavior.setState(BottomSheetBehavior.STATE_EXPANDED);

});

}

你可能感兴趣的:(2022-11-20 BottomSheetDialogFragment 底部显示不全)