必威体育Betway必威体育官网
当前位置:首页 > IT技术

Launcher3仿小米桌面

时间:2019-09-02 11:09:59来源:IT技术作者:seo实验室小编阅读:64次「手机版」
 

小米桌面

刚开始弄这个的时候 没有一点头绪 ,后来看到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上默认只有移除动作的如下

这里写图片描述

只有在主菜单长按应用才会出现卸载或应用信息按钮 在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中用到的都要替换

这里写图片描述

相关阅读

Android O Launcher3-Workspace加载

一.简述: Launcher这里我们研究主要是Launcher3(Android O平台),各个手机公司自家的ROM Launcher,咱们也看不到,但是八九不离十啦,他

分享到:

栏目导航

推荐阅读

热门阅读