美文网首页Android开发Android技术知识Android开发经验谈
Android 覆盖安装会同时发送remove和replace的

Android 覆盖安装会同时发送remove和replace的

作者: 超威蓝猫l | 来源:发表于2018-11-26 17:26 被阅读10次

    有一些需求,在软件卸载的时候做一些动作,但是我最近发现,在5.1上,覆盖安装的时候会发remove和replace两种intent,这样会导致功能异常,解决方案有2

    1. Intent.EXTRA_REPLACING
    if (intent.getAction().equals(Intent.ACTION_PACKAGE_REMOVED)) {
                String packageName = intent.getData().getSchemeSpecificPart();
                boolean booleanReplacing = intent.getBooleanExtra(Intent.EXTRA_REPLACING, false);
                LogUtils.e("booleanReplacing:" + booleanReplacing);
                LogUtils.e("remove:" + packageName);
                if (!booleanReplacing) {
                    //这里是真正的卸载
                }
            }
    

    2.监听Intent.ACTION_PACKAGE_FULLY_REMOVED
    这个广播是应用被卸载,数据被时才会发,所以,这是真正的被卸载的时候会发的。

    相关文章

      网友评论

        本文标题:Android 覆盖安装会同时发送remove和replace的

        本文链接:https://www.haomeiwen.com/subject/lvabqqtx.html