android安卓升级版本安装后自动打开弹出完成和打开新版应用界面

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android安卓升级版本安装后自动打开弹出完成和打开新版应用界面相关的知识,希望对你有一定的参考价值。

public void installApk(File file,Context ctx) {  

Intent intent = new Intent();   

intent.setAction(Intent.ACTION_VIEW);  

intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 

intent.setDataAndType(Uri.fromFile(file),"application/vnd.android.packagearchive");  

ctx.startActivity(intent);  

android.os.Process.killProcess(android.os.Process.myPid());

}  


//如果没有android.os.Process.killProcess(android.os.Process.myPid());最后不会提示完成、打开。
//如果没有i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);这一步的话,最后安装好了,点打开,是不会打开新版本应用的。

以上是关于android安卓升级版本安装后自动打开弹出完成和打开新版应用界面的主要内容,如果未能解决你的问题,请参考以下文章

android软件的版本更新是如何实现的

怎样把安卓系统升级到7.0

IE8浏览器总弹出这样的窗口.

如何app自动升级 静默安装 android

ubuntu如何彻底删除gnome?系统刚升级到13.04,就安装了gnome桌面环境,可装后老是死机,现在想换回

python重装后怎样配置pycharm