码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2016-09-01 00:33:16      阅读:191      评论:0      收藏:0      [点我收藏+]

标签: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   安卓   升级   安装   自动打开   

原文地址:http://11020803.blog.51cto.com/11010803/1844901

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!