Android版本强制更新

目前的项目之中基本上都会存在版本更新的功能,分为强制更新和推荐更新,其实功能点都是一样的,推荐更新只是增加一个按钮让更新的弹框隐藏掉而已,这里仅记录强制更新的功能

首先需要跟接口约定,需要判断是否弹出更新弹框

val isUpdate = VersionUtils.compareVersions("服务端新的版本号","本地版本号")
if (result.isIsNew && isUpdate) {
    //检查更新
    val checkVersionUtils = CheckVersionUtils(this, result.versionPath
            , result.versionDesc, result.newVersion)
    checkVersionUtils.showUpdateVersion()
}

这里的isNew为true表示有新版本更新,为false则没有更新,为了防止服务端出错,这里加上了本地的版本号和服务端的版本号进行匹配的字段

CheckVersionUtils

public class CheckVersionUtils {

    private Context mContext;
    private Dialog mDialog;
    private TextView tvUpdate, tvProgress;
    private ProgressBar progressBar;
    private Logger logger = LoggerFactory.getLogger(CheckVersionUtils.class);

    //下载地址
    private String apkUrl;
    private List<String> apkDes;
    private String newVersion;

    public CheckVersionUtils(Context context, String apkUrl, List<String> apkDes, String newVersion) {
        this.mContext = context;
        this.apkUrl = apkUrl;
        this.apkDes = apkDes;
        this.newVersion = newVersion;
    }

    /**
     * 版本更新弹框
     */
    @SuppressLint("SetTextI18n")
    public void showUpdateVersion() {
        mDialog = new Dialog(mContext, R.style.Teldialog);
        mDialog.setContentView(R.layout.dialog_update_version);
        mDialog.setCanceledOnTouchOutside(false);
        mDialog.setCancelable(false);
        mDialog.show();

        tvUpdate = mDialog.findViewById(R.id.tv_update);
        tvProgress = mDialog.findViewById(R.id.tv_progress);
        progressBar = mDialog.findViewById(R.id.progress_bar);

        TextView tvVersion = mDialog.findViewById(R.id.tv_version);
        tvVersion.setText("v" + newVersion);

        TextView tvDes = mDialog.findViewById(R.id.tv_des);

        StringBuffer stringBuffer = new StringBuffer();
        for (int i = 0; i < apkDes.size(); i++) {
            String des = "· " + apkDes.get(i) + "\n";
            stringBuffer.append(des);
        }
        tvDes.setText(stringBuffer);

        //立即更新
        tvUpdate.setOnClickListener(view -> {
            tvUpdate.setVisibility(View.GONE);
            tvProgress.setVisibility(View.VISIBLE);
            progressBar.setVisibility(View.VISIBLE);
            initDownload();
        });
    }

    /**
     * 下载apk
     */
    private void initDownload() {
        OkHttpClient okHttpClient = new OkHttpClient.Builder().build();
        Request request = new Request.Builder()
                .url(apkUrl)
                .get()
                .build();

        okHttpClient.newCall(request).enqueue(new Callback() {
            @Override
            public void onFailure(Call call, IOException e) {
                logger.error("apk下载失败:" + e.getMessage());
                apkUrl = apkUrl.replace("https", "http");
                initDownload();
            }

            @Override
            public void onResponse(Call call, Response response) throws IOException {
                ResponseBody body = response.body();
                InputStream inputStream = body.byteStream();
                saveFile(inputStream, Environment.getExternalStorageDirectory() + "/" + "demo.apk", body.contentLength());
            }
        });
    }

    /**
     * @param saveFile   存放的地址
     * @param fileLength 文件的长度
     */
    @SuppressLint("SetTextI18n")
    private void saveFile(InputStream inputStream, String saveFile, final long fileLength) {
        long count = 0;
        try {
            FileOutputStream outputStream = new FileOutputStream(new File(saveFile));
            int length = -1;
            byte[] bytes = new byte[1024 * 10];
            while ((length = inputStream.read(bytes)) != -1) {
                // 写入文件
                outputStream.write(bytes, 0, length);
                count += length;

                final long finalCount = count;
                ((Activity) mContext).runOnUiThread(() -> {
                    // 设置进度条最大值
                    progressBar.setMax((int) fileLength);
                    // 设置下载进度
                    progressBar.setProgress((int) finalCount);
                    // 设置进度文本 (100 * 当前进度 / 总进度)
                    tvProgress.setText((int) (100 * finalCount / fileLength) + "%");
                });
            }
            inputStream.close();
            outputStream.close();
            ((Activity) mContext).runOnUiThread(() -> {
                //下载完成,自动安装
                mDialog.dismiss();
                ((Activity) mContext).finish();
                installApk(new File(Environment.getExternalStorageDirectory() + "/" + "demo.apk"));
            });
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    /**
     * 安装apk文件
     *
     * @param apkFile 安装包所在目录
     */
    private void installApk(File apkFile) {
        //判断版本是否在7.0以上
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
            Uri apkUri = FileProvider.getUriForFile(mContext,
                    "com.carson.fileprovider", apkFile);
            Intent install = new Intent(Intent.ACTION_VIEW);
            install.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            //对目标应用临时授权该Uri所代表的文件
            install.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
            install.setDataAndType(apkUri, "application/vnd.android.package-archive");
            mContext.startActivity(install);
        } else {
            Intent install = new Intent(Intent.ACTION_VIEW);
            install.setDataAndType(Uri.fromFile(apkFile), "application/vnd.android.package-archive");
            install.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            mContext.startActivity(install);
        }
    }
}

需要在manifest中添加处理

        <provider
            android:name="android.support.v4.content.FileProvider"
            android:authorities="com.carson.fileprovider"
            android:exported="false"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/file_paths" />
        </provider>

xml下的file_paths

<?xml version="1.0" encoding="utf-8"?>
<paths>
    <external-path
        name="files_root"
        path="Android/data/com.yugyg.shopkeeper/" />
    <external-path
        name="external_storage_root"
        path="." />
    <root-path
        name="root_path"
        path="" />
</paths>

贴上dialog

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="316dp"
    android:layout_height="385dp"
    android:background="@mipmap/bg_update"
    android:gravity="center_horizontal"
    android:orientation="vertical"
    android:paddingStart="12dp"
    android:paddingEnd="12dp"
    tools:ignore="MissingDefaultResource">

    <TextView
        android:id="@+id/tv_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="56dp"
        android:text="发现新版本"
        android:textColor="@color/color_white"
        android:textSize="16sp" />

    <TextView
        android:id="@+id/tv_version"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/tv_title"
        android:layout_marginTop="8dp"
        android:background="@drawable/bg_tv_version"
        android:paddingStart="12dp"
        android:paddingTop="4dp"
        android:paddingEnd="12dp"
        android:paddingBottom="4dp"
        android:text="v1.4"
        android:textColor="@color/color_white"
        android:textSize="12sp" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:orientation="vertical">

        <android.support.v4.widget.NestedScrollView
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1">

            <TextView
                android:id="@+id/tv_des"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_marginTop="15dp"
                android:lineSpacingMultiplier="1.5"
                android:text="111"
                android:textColor="@color/color_black"
                android:textSize="12sp" />
        </android.support.v4.widget.NestedScrollView>

        <RelativeLayout
            android:layout_width="88dp"
            android:layout_height="32dp"
            android:layout_gravity="center"
            android:layout_marginTop="15dp"
            android:layout_marginBottom="20dp">

            <TextView
                android:id="@+id/tv_update"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:background="@drawable/bg_update_version"
                android:gravity="center"
                android:text="立即更新"
                android:textColor="@color/color_white"
                android:textSize="12sp" />

            <ProgressBar
                android:id="@+id/progress_bar"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:indeterminateOnly="false"
                android:mirrorForRtl="true"
                android:progressDrawable="@drawable/progress_drawable"
                android:visibility="gone" />

            <TextView
                android:id="@+id/tv_progress"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerInParent="true"
                android:text="0%"
                android:textColor="@color/color_white"
                android:textSize="12sp"
                android:visibility="gone" />
        </RelativeLayout>
    </LinearLayout>

</RelativeLayout>

styles

    <style name="Teldialog" parent="@android:style/Theme.Dialog">
        <item name="android:windowBackground">@color/windowTransaction</item>
        <item name="android:windowFrame">@null</item>
        <item name="android:windowNoTitle">true</item>
        <item name="android:windowIsFloating">true</item>
        <item name="android:gravity">bottom</item>
        <item name="android:windowIsTranslucent">true</item>
        <item name="android:windowCloseOnTouchOutside">true</item>
        <item name="android:windowContentOverlay">@null</item>
        <item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item>
        <item name="android:backgroundDimEnabled">true</item>
    </style>

到此,功能全部实现

实现效果图
图片.png

最后贴上版本的比较,在后端进行比较后前端最好也进行一次比较,防止错误的出现,进行容错处理

/**
 * 如果版本1 大于 版本2 返回true 否则返回fasle 支持 2.2 2.2.1 比较
 * 支持不同位数的比较  2.0.0.0.0.1  2.0 对比
 *
 * @param newVersion 版本服务器版本 " 1.1.2 "
 * @param nowVersion 版本 当前版本 " 1.2.1 "
 * @return ture :需要更新 false : 不需要更新
 */
public static boolean compareVersions(String newVersion, String nowVersion) {
    //判断是否为空数据
    if (TextUtils.equals(newVersion, "") || TextUtils.equals(nowVersion, "")) {
        return false;
    }
    String[] str1 = newVersion.split("\\.");
    String[] str2 = nowVersion.split("\\.");
    if (str1.length == str2.length) {
        for (int i = 0; i < str1.length; i++) {
            if (Integer.parseInt(str1[i]) > Integer.parseInt(str2[i])) {
                return true;
            } else if (Integer.parseInt(str1[i]) < Integer.parseInt(str2[i])) {
                return false;
            } else if (Integer.parseInt(str1[i]) == Integer.parseInt(str2[i])) {
            }
        }
    } else {
        if (str1.length > str2.length) {
            for (int i = 0; i < str2.length; i++) {
                if (Integer.parseInt(str1[i]) > Integer.parseInt(str2[i])) {
                    return true;
                } else if (Integer.parseInt(str1[i]) < Integer.parseInt(str2[i])) {
                    return false;
                } else if (Integer.parseInt(str1[i]) == Integer.parseInt(str2[i])) {
                    if (str2.length == 1) {
                        continue;
                    }
                    if (i == str2.length - 1) {
                        for (int j = i; j < str1.length; j++) {
                            if (Integer.parseInt(str1[j]) != 0) {
                                return true;
                            }
                            if (j == str1.length - 1) {
                                return false;
                            }
                        }
                        return true;
                    }
                }
            }
        } else {
            for (int i = 0; i < str1.length; i++) {
                if (Integer.parseInt(str1[i]) > Integer.parseInt(str2[i])) {
                    return true;
                } else if (Integer.parseInt(str1[i]) < Integer.parseInt(str2[i])) {
                    return false;
                } else if (Integer.parseInt(str1[i]) == Integer.parseInt(str2[i])) {
                    if (str1.length == 1) {
                        continue;
                    }
                    if (i == str1.length - 1) {
                        return false;
                    }
                }
            }
        }
    }
    return false;
}

代码传送门

最后编辑于
?著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,100评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,308评论 3 388
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事?!?“怎么了?”我有些...
    开封第一讲书人阅读 159,718评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,275评论 1 287
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,376评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,454评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,464评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,248评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,686评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,974评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,150评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,817评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,484评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,140评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,374评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,012评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,041评论 2 351

推荐阅读更多精彩内容