android软件版本更新

版本更新

//获取版本号
                        version_code = UpdateBean.getData().getVersion_code();
                        //获取下载地址
                        download_url = UpdateBean.getData().getDownload_url();
                        Shared.writeString(getActivity(),"download_url",download_url);
                        doNewVersionUpdate();

 /**
     * 版本更新
     */
    private void doNewVersionUpdate() {
//        int verCode = Integer.valueOf(GetPublicParams.getInstance().getVersionCode());
        final AlertDialog dialog=new AlertDialog.Builder(getActivity()).create();
        dialog.show();
        dialog.setCancelable(true);
        dialog.setCanceledOnTouchOutside(true);
        Window window=dialog.getWindow();
        window.setContentView(R.layout.update_version);
        TextView tvUpdate= (TextView) window.findViewById(R.id.tv_update);
        tvUpdate.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                downLoadApk();
                dialog.dismiss();
            }
        });
    }

    /**
     * 下载APK
     */
    private void downLoadApk() {
        final ProgressDialog pd;    //进度条对话框
        pd = new  ProgressDialog(getActivity());
        pd.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
        pd.setMessage("正在下载更新");
        pd.show();
        new Thread(){
            @Override
            public void run() {
                try {
                    File file = DownLoadManager.getFileFromServer(download_url, pd);
                    sleep(3000);
                    installApk(file);
                    pd.dismiss(); //结束掉进度条对话框
                } catch (Exception e) {
                    Message msg = new Message();
                    msg.what = 0x005;
                    handler.sendMessage(msg);
                    e.printStackTrace();
                }
            }}.start();
    }

    /**
     * 安装APK
     * @param file
     */
    private void installApk(File file) {
        Intent intent = new Intent();
        //执行动作
        intent.setAction(Intent.ACTION_VIEW);
        //执行的数据类型
        intent.setDataAndType(Uri.fromFile(file), "application/vnd.android.package-archive");
        startActivity(intent);

    }


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值