Android版本更新

来源:互联网 发布:sql增删改查面试题 编辑:程序博客网 时间:2024/06/05 06:16

以下代码可以直接使用

 /**     *  安装下载的apk文件     * @param context  上下文(在非Activity)     * @param sdPath   apk存储路径     */    public void installApk(Context context,final String sdPath) {        String url=sdPath+"/Download/mengbao.apk";        final File file= new File(url);        if(!file.exists()){            return;        }        Log.d("下载进度", "准备安装");        Intent intent= new Intent(Intent.ACTION_VIEW);        intent.setDataAndType(Uri.parse("file://"+file.toString()), "application/vnd.android.package-archive");        intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);        context.startActivity(intent);        android.os.Process.killProcess(android.os.Process.myPid());//☆☆☆  这一句如果不加,可能导致安装失败    }



原创粉丝点击