Android做检测版本更新安装完以后就什么都没有了,没有出现安装成功的界面

在检测版本更新时,当下载完以后,安装的时候,系统显示正在安装,然后就没有,回到了主页,没有显示安装成功的界面,让用户不知所措。安装程序的代码如下:

    Intent intent = new Intent(Intent.ACTION_VIEW);  
    intent.setDataAndType(Uri.parse("file://xxxx.apk"), "application/vnd.android.package-archive");  
    context.startActivity(intent);  

这在android4.0以前的系统中没有什么问题,但是在android4.0及其以后的系统中就不显示安装成功的界面,应该加一行代码:

    intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

你可能感兴趣的:(Android)