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安卓升级版本安装后自动打开弹出完成和打开新版应用界面
原文地址:http://11020803.blog.51cto.com/11010803/1844901