首页 > 代码库 > android安卓升级版本安装后自动打开弹出完成和打开新版应用界面
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安卓升级版本安装后自动打开弹出完成和打开新版应用界面
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。