Android BottomSheet如何在外面点击时崩溃?

前端之家收集整理的这篇文章主要介绍了Android BottomSheet如何在外面点击时崩溃?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经实现了NestedScrollView的bottomsheet行为.并且想知道是否可以在外面触摸时隐藏底部图表视图.

解决方法

最后我能够做到这一点,

使用以下代码行:

@Override public boolean dispatchTouchEvent(MotionEvent event){
    if (event.getAction() == MotionEvent.ACTION_DOWN) {
        if (mBottomSheetBehavior.getState()==BottomSheetBehavior.STATE_EXPANDED) {

            Rect outRect = new Rect();
            bottomSheet.getGlobalVisibleRect(outRect);

            if(!outRect.contains((int)event.getRawX(),(int)event.getRawY()))
                mBottomSheetBehavior.setState(BottomSheetBehavior.STATE_COLLAPSED);
        }
    }

    return super.dispatchTouchEvent(event);
}
原文链接:https://www.f2er.com/android/310896.html

猜你在找的Android相关文章