Feb 23, 2017 · 1 min read
https://github.com/rubensousa/BottomSheetExample hey have worked on completely removing dragging down of BottomSheetDialogFragment BottomSheetBehavior.STATE_DRAGGING ?? while recyclerview scrolling ends BottomSheetDialogFragment should not be dragged down !! do you know any way to do it in in this example ?
@Override
public void onStateChanged(@NonNull View bottomSheet, int newState) {
if (newState == BottomSheetBehavior.STATE_DRAGGING) {
mBehavior.setState(BottomSheetBehavior.STATE_EXPANDED);
}is not working :(
