安卓(Android)应用版本更新方法
开发中对版本进行检查并更新的需求基本是所有应用必须有的功能,可是在实际开发中有些朋友就容易忽略一些细节。
版本更新的基本流程:
一般是将本地版本告诉服务器,服务器经过相关处理会返回客户端相关信息,告诉客户端需不需要更新,如果需要更新是强制更新还是非强制更新。客户端得到服务器返回的相关信息后再进一步做逻辑处理。
强制更新:
一般的处理就是进入应用就弹窗通知用户有版本更新,弹窗可以没有取消按钮并不能取消。这样用户就只能选择更新或者关闭应用了,当然也可以添加取消按钮,但是如果用户选择取消则直接退出应用。
非强制更新
一般的处理是在应用的设置中添加版本检查的操作,如果用户主动检查版本则弹窗告知用户有版本更新。这时用户可以取消或者更新。
功能实际是比较简单清晰的,但之所以写这篇文章,是因为在我们公司的一个项目中,我把这个模块分给了一个有着4年工作经验的哥们编写,最后这哥们花了2个小时做完了。我还想这哥们写得挺快,效率很高嘛,结果一测试发现问题不少:
1. 进入首页前关闭网络,进入后刷新界面发现强制更新提醒没有弹窗
2. 再进入其它界面也没有任何更新提醒
3. 在正常更新时点击确定更新,没有判断网络状态(wifi,移动网络)直接下载apk文件,如果用户在移动网络下将耗费非常多的流量,直接影响用户体验
4. 下载过程在应用内没有进度条提醒,通知栏也没有进度提醒
5. apk文件下载过程中,如果强制结束应用,下载被中断
6. apk如果正常下载下来,弹出了安装界面,这时如果用户取消了安装回到应用,在需要强制更新的情况下并没有再次弹窗阻止用户进行任何其它操作,失去了强制更新的意义
首先声明下,我这丝毫没有吐槽的意思哟,只是想说作为一个合格的程序员大家最起码需要做到思维严谨这点,在有能力的情况下对用户体验能提点建议最好。自己写的代码一定要经过严格测试再交付,不要指望测试人员帮你测试再去修改,你要知道现在很多公司是没有专业的测试人员甚至是没有测试人员的哟。
针对以上问题出现的原因分析及解决方案如下:
对于1,2问题
很明显他把检查更新的工作只写在了应用的首页(比如mainactivity)中了,在其它任何界面并没有检查更新的操作
解决方案
每个界面都需要检查更新,当然咱们不能在每个activity中都复制粘贴一样的代码。这时定义一个baseactivity,所有其它activity都从它继承就显得很有价值了。可以把检查更新的操作放到baseactivity的相关方法中,比如放在onresume中,这样每当显示一个界面时都将执行检查更新的操作
对于5问题,如果把下载的操作放在了activity中进行,如果应用意外终止或者强制退出应用,则下载线程也将被终止
解决方案
可以将下载任务放到service中执行,这样即使应用被终止service一样有保活机制(startforeground)让service的任务有很大的机会继续得以执行
对于6问题,如果检查更新的操作没有在activity的resume时再次执行,则回到activity自然也就没有检查更新并弹窗了
解决方案
在activity的onresume中继续检查更新,如果是强制更新则弹窗阻止用户进行其它操作
对于3,4问题,我倒是觉得不是程序问题而是态度问题,实际加入非wifi和进度显示的功能非常简单
整体解决方案
定义service类,比如versionupdateservice.java。主要提供版本检查及文件下载操作
定义versionupdatehelper类,用来使用service并提供和前台activity的交互
如果大家对service的使用还有问题(需要频繁更新前台ui等),建议大家阅读android图片压缩上传系列-service篇这篇文章先做了解。
核心代码如下:
public class versionupdateservice extends service { private localbinder binder = new localbinder(); private downloadlistener downloadlistener;//下载任务监听回调接口 private boolean downloading; private int progress; private notificationmanager mnotificationmanager; private notificationupdaterthread notificationupdaterthread; private notification.builder notificationbuilder; private final int notification_id = 100; private versionupdatemodel versionupdatemodel; private checkversioncallback checkversioncallback;//检查结果监听回调接口 public interface downloadlistener { void begain(); void inprogress(float progress, long total); void downloadlatestsuccess(file file); void downloadlatestfailed(); } public interface checkversioncallback { void onsuccess(); void onerror(); } ... private class notificationupdaterthread extends thread { @override public void run() { while (true) { notificationbuilder.setcontenttitle("正在下载更新" + progress + "%"); // the label of the entry notificationbuilder.setprogress(100, progress, false); ... } } } private void stardownloadforground() { //创建通知栏 notificationbuilder = new notification.builder(this); ... notification notification = notificationbuilder.getnotification(); startforeground(notification_id, notification); } private void stopdownloadforground() { stopforeground(true); } //执行版本检查任务 public void docheckupdatetask() { //获取本定版本号 final int currentbuild = apputil.getversioncode(this); //调用版本检查接口 apimanager.getinstance().versionapi.upgraderecords(currentbuild, new requestcallback() { @override public void onsuccess(headers headers, string response) { versionupdatemodel = json.parseobject(response, versionupdatemodel.class); ... if (checkversioncallback != null) checkversioncallback.onsuccess(); } @override public void onerror(int code, string response) { ... } }); } public void dodownloadtask() { stardownloadforground(); //启动通知栏进度更新线程 notificationupdaterthread = new notificationupdaterthread(); notificationupdaterthread.start(); //文件下载存放路径 final file filedir = folderutil.getdownloadcachefolder(); ... downloading = true; if (downloadlistener != null) { downloadlistener.begain(); } netmanager.getinstance().download(url, filedir.getabsolutepath(), new downloadcallback() { @override public void inprogress(float progress_, long total) { ... //执行进度更新 if (downloadlistener != null) downloadlistener.inprogress(progress_, total); } @override public void onsuccess(headers headers, string response) { //执行成功回调 ... installapk(destfile, versionupdateservice.this); } @override public void onerror(int code, string response) { ... //执行失败回调 } }); } //安装apk public void installapk(file file, context context) { ... } }
public class versionupdatehelper implements serviceconnection { private context context; private versionupdateservice service; private alertdialog waitforupdatedialog; private progressdialog progressdialog; private static boolean iscanceled; private boolean showdialogonstart; public static final int need_update = 2; public static final int donot_need_update = 1; public static final int check_faild = -1; public static final int user_canceled = 0; private checkcallback checkcallback; public interface checkcallback{ void callback(int code); } public versionupdatehelper(context context) { this.context = context; } public void startupdateversion() { if (iscanceled) return; if (iswaitforupdate() || iswaitfordownload()) { return; } if (service == null && context != null) { context.bindservice(new intent(context, versionupdateservice.class), this, context.bind_auto_create); } } public void stopupdateversion() { unbindservice(); } private void cancel() { iscanceled = true; unbindservice(); } private void unbindservice() { if (iswaitforupdate() || iswaitfordownload()) { return; } if (service != null && !service.isdownloading()) { context.unbindservice(this); service = null; } } ... private void shownotwifidownloaddialog() { final alertdialog.builder builer = new alertdialog.builder(context); builer.settitle("下载新版本"); builer.setmessage("检查到您的网络处于非wifi状态,下载新版本将消耗一定的流量,是否继续下载?"); builer.setnegativebutton("以后再说", new dialoginterface.onclicklistener() { @override public void onclick(dialoginterface dialog, int which) { ... //如果是强制更新 exit app if (mustupdate) { mainapplication.getinstance().exitapp(); } } }); builer.setpositivebutton("继续下载", new dialoginterface.onclicklistener() { @override public void onclick(dialoginterface dialog, int which) { dialog.cancel(); service.dodownloadtask(); } }); ... } @override public void onserviceconnected(componentname name, ibinder binder) { service = ((versionupdateservice.localbinder) binder).getservice(); service.setcheckversioncallback(new versionupdateservice.checkversioncallback() { @override public void onsuccess() { versionupdatemodel versionupdatemodel = service.getversionupdatemodel(); //eventbus控制更新红点提示 eventbus.getdefault().poststicky(versionupdateevent); if (!versionupdatemodel.isneedupgrade()) { if(checkcallback != null){ checkcallback.callback(donot_need_update); } cancel(); return; } if (!versionupdatemodel.ismustupgrade() && !showdialogonstart) { cancel(); return; } if(checkcallback != null){ checkcallback.callback(need_update); } final alertdialog.builder builer = ...//更新提示对话框 builer.setpositivebutton("立即更新", new dialoginterface.onclicklistener() { @override public void onclick(dialoginterface dialog, int which) { dialog.cancel(); if (netutil.iswifi(context)) { service.dodownloadtask(); } else { shownotwifidownloaddialog(); } } }); //当点取消按钮时进行登录 if (!versionupdatemodel.ismustupgrade()) { builer.setnegativebutton("稍后更新", new dialoginterface.onclicklistener() { public void onclick(dialoginterface dialog, int which) { dialog.cancel(); cancel(); if(checkcallback != null){ checkcallback.callback(user_canceled); } } }); } builer.setcancelable(false); waitforupdatedialog = builer.create(); waitforupdatedialog.show(); } @override public void onerror() { unbindservice(); ... } }); service.setdownloadlistener(new versionupdateservice.downloadlistener() { @override public void begain() { versionupdatemodel versionupdatemodel = service.getversionupdatemodel(); if (versionupdatemodel.ismustupgrade()) { progressdialog = ...//生成进度条对话框 } } @override public void inprogress(float progress, long total) { ...//更新进度条 } @override public void downloadlatestsuccess(file file) { ...//执行成功处理 unbindservice(); } @override public void downloadlatestfailed() { ...//执行失败处理 unbindservice(); } }); service.docheckupdatetask(); } ... }
最后,使用方式还是非常简单的。在baseactivity中使用:
private versionupdatehelper versionupdatehelper; @override protected void onresume() { super.onresume(); if(versionupdatehelper == null) versionupdatehelper = new versionupdatehelper(this); versionupdatehelper.startupdateversion(); } @override protected void onpause() { super.onpause(); if(versionupdatehelper != null) versionupdatehelper.stopupdateversion(); }
保证在每进入一个界面和离开界面时都将检查更新(bindservice)和取消检查(unbindservice)。这时有些朋友可能认为这样做会不会浪费资源呢?没有!
1,如果应用是强制更新,那么在网络正常情况下进入应用就能检查出有新版本,这时弹窗后用户不能进入任何操作,没有机会进入别的界面,所有没有进行重复检查;如果进入应用主页由于网络问题,检查失败,这时虽然不会弹窗提示更新,但是如果用户的网络恢复后进入任何其它界面都将得到正常的版本更新检查并弹窗提示
2,如果应用是非强制更新时,在helper代码里进行了如下的判断:
settingactivity.java private versionupdatehelper versionupdatehelper; @onclick(r.id.rl_version_update) public void onclickversionupdate(view view) { if(updatetips.getvisibility() == view.visible){ return; } versionupdatehelper.resetcancelflag();//重置cancel标记 if (versionupdatehelper == null) { versionupdatehelper = new versionupdatehelper(this); versionupdatehelper.setshowdialogonstart(true); versionupdatehelper.setcheckcallback(new versionupdatehelper.checkcallback() { @override public void callback(int code) { //eventbus发送消息通知红点消失 versionupdateevent versionupdateevent = new versionupdateevent(); versionupdateevent.setshowtips(false); eventbus.getdefault().poststicky(versionupdateevent); } }); } versionupdatehelper.startupdateversion(); }
写在最后
由于代码较多,且多数代码和ui相关,所以在文章中很多ui相关或者getter和setter方法等非核心代码并没有列出。演示代码中用了eventbus和okhttp开源控件,具体使用方法望大家自己找相关资料学习。本人打算有空的时候写个eventbus系列文章,望大家多多关注。
文件下载也是使用的okhttp实现的,大家可以换成任何你熟悉的下载框架。versionupdateservice.java和versionupdatehelper.java的完整代码可以到我的github上下载,由于时间关系并没有相关用法的完整案例还望见谅,等有时间一定奉上。