Launcher3仿小米桌面

刚开始弄这个的时候 没有一点头绪 ,后来看到4.4 跟5.1的源码有这个方法 ,刚开始尝试是把4.4的Launcher移植到6.0版本,编译报错,版本差别太大了。之后拿到5.1的源码尝试编译 通过了,然后就开始分析
首先找到控制所有应用按钮显示的地方在com\android\launcher3\LauncherAppState.java

    public static boolean isDisableAllApps() {
        // Returns false on non-dogfood builds.
        /*注释下面的两句 直接返回true*/
        //return getInstance().mBuildInfo.isDogfoodBuild() &&
               // Utilities.isPropertyEnabled(Launcher.DISABLE_ALL_APPS_PROPERTY);
        return true;
    }

这样按钮就消失了了,所有的app都出现再 workspace
只修改此处 还有两个大坑,一、通过上面的步骤的话 我们默认是把所有应用显示在了workspace上,然而用系统launcher的人都知道在workspace上默认只有移除动作的如下
Launcher3仿小米桌面_第1张图片
只有在主菜单长按应用才会出现卸载或应用信息按钮 在workspace已出只是把图标删除了,进入到设置–》应用里面还能找到apk
如果adb shell pm clear com.android.launcher3重启Launcher app又出现在桌面上
这个坑请参考此博客 android launcher 之踩到的坑
下面说 第二个坑 修改之后 长按桌面空白处 点击进入wight界面会出现异常 进去wight界面之后 返回 不到主界面了 点返回键 home键都没用 要长按一下桌面 再点一下桌面才会回来
找到在Launcher.java的两个方法showAppsCustomizeHelper和hideAppsCustomizeHelper中用到

/**
     * Sets the all apps button. This method is called from {@link Hotseat}.
     */
    public void setAllAppsButton(View allAppsButton) {
        mAllAppsButton = allAppsButton;
    }

    public View getAllAppsButton() {
        return mAllAppsButton;
    }
 // If for some reason our views aren't initialized, don't animate
       boolean initialized = getAllAppsButton() != null;

        if (animated && initialized*) {
        ...
        }

原因是去主菜单后 这个mAllAppsButton是空的,就出现异常了
我就用getHotseat()替换getAllAppsButton()方法 完美解决

 // If for some reason our views aren't initialized, don't animate
        boolean initialized = getHotseat() != null;

        if (animated &&initialized) {
            mStateAnimation = LauncherAnimUtils.createAnimatorSet();
            if (workspaceAnim != null) {
                mStateAnimation.play(workspaceAnim);
            }

两个方法showAppsCustomizeHelper和hideAppsCustomizeHelper中用到的都要替换
Launcher3仿小米桌面_第2张图片

你可能感兴趣的:(android)