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

android安装apk

时间:2014-08-22 16:18:29      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:android




     * 安装apk 

     */  

    private void installApk() {  

        // 获取当前sdcard存储路径  

        File apkfile = new File(Environment.getExternalStorageDirectory().getAbsolutePath() + "/updateApkFile/" + info.getApkName());  

        if (!apkfile.exists()) {  

            return;  

        }  

        Intent i = new Intent(Intent.ACTION_VIEW);  

        // 安装,如果签名不一致,可能出现程序未安装提示  

        i.setDataAndType(Uri.fromFile(new File(apkfile.getAbsolutePath())), "application/vnd.android.package-archive");   

        mContext.startActivity(i);  

    }  

android安装apk

标签:android

原文地址:http://blog.csdn.net/u014608640/article/details/38758151

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