1.1概述
在10.0的系统rom定制化开发中,在原生系统Launcher3中是可以通过下滑workspace来下拉出状态栏的,然而在禁用systemui下拉状态栏的时候,是可以通过Launcher3下滑
workspace页面下拉出状态栏,也是不合理的,所以也同时需要禁用Launcher3中的下拉状态栏的功能,接下来就来分析下Launcher3中在workspace中通过下滑下拉出
状态栏的相关源码,来实现禁用workspace中通过下滑下拉状态栏功能
2.1Launcher3中workspaces桌面去掉下拉状态栏功能的核心类
packages/apps/Launcher3/quickstep/src/com/android/launcher3/uioverrides/touchcontrollers/StatusBarTouchController.java
packages/apps/Launcher3/go/quickstep/src/com/android/launcher3/uioverrides/RecentsUiFactory.java
packages/apps/Launcher3/src/com/android/launcher3/dragndrop/DragLayer.java
3.Launcher3中workspaces桌面去掉下拉状态栏功能的核心功能分析和实现
3.1StatusBarTouchController.java关于workspace下滑触摸事件的分析
/*** TouchController for handling touch events that get sent to the StatusBar. Once the* Once the event delta y passes the touch slop, the events start getting fo