Android8.1 Launcher3 去掉抽屉(一)
目前的需求是把8.1的launcher修改为国内常见的,将所有app显示在workspace中,但是网上查了一下,没有找到这方面资料,只能自己慢慢看了,这篇博客记录一下。
1:
Launcher3\src\com\android\launcher3\LauncherAppState.java:
添加一个方法:
public static boolean isDisableAllApps() {
return true;
}
2:
Launcher3\src\com\android\launcher3\InvariantDeviceProfile.java –>isAllAppsButtonRank():
在6.0中,这个方法是在HotSeat.java中
public boolean isAllAppsButtonRank(int rank) {
if (LauncherAppState.isDisableAllApps()) {
return false;
}
return rank == getAllAppsButtonRank();
}
3:
在HotSeat里面去掉Allapp键的加载
L