Android 11.0 删除上拉,进入全部应用界面

网友投稿 918 2022-09-11

Android 11.0 删除上拉,进入全部应用界面

Android 11.0 删除上拉,进入全部应用界面

packages/apps/Launcher3/src/com/android/launcher3/touch/AbstractStateChangeTouchController.java

@Override public final boolean onControllerInterceptTouchEvent(MotionEvent ev) { if (ev.getAction() == MotionEvent.ACTION_DOWN) { mNoIntercept = !canInterceptTouch(ev); if (mNoIntercept) { return false; } // Now figure out which direction scroll events the controller will start // calling the callbacks. final int directionsToDetectScroll; boolean ignoreSlopWhenSettling = false; if (mCurrentAnimation != null) { directionsToDetectScroll = SingleAxisSwipeDetector.DIRECTION_BOTH; ignoreSlopWhenSettling = true; } else { directionsToDetectScroll = getSwipeDirection(); if (directionsToDetectScroll == 0) { mNoIntercept = true; return false; } } mDetector.setDetectableScrollConditions( directionsToDetectScroll, ignoreSlopWhenSettling); }++ if (LauncherAppState.isDisableAllApps()) {++ return false;++ } if (mNoIntercept) { return false; } onControllerTouchEvent(ev); return mDetector.isDraggingOrSettling(); }

我是王睿丶,加入我的Q群:901440630,欢迎一起讨论安卓技术!

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:vmware三种网络模式的工作原理及配置详解
下一篇:SWITCH练习(一年第几天的判断)(switch语句判断星期几)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~