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

Android自动更新安装后显示‘完成’‘打开’按钮

时间:2014-11-21 12:27:21      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   io   ar   color   os   sp   on   

 

 1 /**
 2      * 安装apk
 3      * 
 4      * @param url
 5      */
 6     private void installApk() {
 7         File apkfile = new File(apkFilePath);
 8         if (!apkfile.exists()) {
 9             return;
10         }
11         Intent i = new Intent(Intent.ACTION_VIEW);
12         i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
13         i.setDataAndType(Uri.parse("file://" + apkfile.toString()),
14                 "application/vnd.android.package-archive");
15         mContext.startActivity(i);
16     }

加上一下代码则在安装完成后会显示‘完成’‘打开’按钮

i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

Android自动更新安装后显示‘完成’‘打开’按钮

标签:android   style   blog   io   ar   color   os   sp   on   

原文地址:http://www.cnblogs.com/l2rf/p/4112278.html

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