android中DownloadManager实现版本更新,监听下载进度实例
downloadmanager简介
downloadmanager是android 2.3(api level 9)用系统服务(service)的方式提供了downloadmanager来处理长时间的下载操作。它包含两个静态内部类downloadmanager.query(用来查询下载信息)和downloadmanager.request(用来请求一个下载)。
downloadmanager主要提供了下面几个方法:
public long enqueue(request request)把任务加入下载队列并返回downloadid,以便后面用于查询下载信息。若网络不满足条件、sdcard挂载中、超过最大并发数等异常会等待下载,正常则直接下载。
public int remove(long… ids)删除下载,若取消下载,会同时删除下载文件和记录。
public cursor query(query query)查询下载信息,包括下载文件总大小,已经下载的大小以及下载状态等。
contentobserver简介
public void contentobserver(handler handler) 所有contentobserver的派生类都需要调用该构造方法,参数:handler handler对象用于在主线程中修改ui。
public void onchange(boolean selfchange)当观察到的uri中内容发生变化时,就会回调该方法。所有contentobserver的派生类都需要重载该方法去处理逻辑。
观察特定uri的步骤如下:
1、创建我们特定的contentobserver派生类,必须重载父类构造方法,必须重载onchange()方法去处理回调后的功能实现。
2、为指定的uri注册一个contentobserver派生类实例,当给定的uri发生改变时,回调该实例对象去处理,调用registercontentobserver()方法去注册内容观察者。
3、由于contentobserver的生命周期不同步于activity和service等。因此,在不需要时,需要手动的调用unregistercontentobserver()注销内容观察者。
效果图:
一:执行下载
下载配置
downloadmanager = (downloadmanager) getsystemservice(download_service); downloadobserver = new downloadchangeobserver(); //在执行下载前注册内容监听者 registercontentobserver(); downloadmanager.request request = new downloadmanager.request(uri.parse(url)); /**设置用于下载时的网络状态*/ request.setallowednetworktypes(downloadmanager.request.network_wifi | downloadmanager.request.network_mobile); /**设置通知栏是否可见*/ request.setnotificationvisibility(downloadmanager.request.visibility_hidden); /**设置漫游状态下是否可以下载*/ request.setallowedoverroaming(false); /**如果我们希望下载的文件可以被系统的downloads应用扫描到并管理, 我们需要调用request对象的setvisibleindownloadsui方法,传递参数true.*/ request.setvisibleindownloadsui(true); /**设置文件保存路径*/ request.setdestinationinexternalfilesdir(getapplicationcontext(), "phoenix", "phoenix.apk"); /**将下载请求放入队列, return下载任务的id*/ downloadid = downloadmanager.enqueue(request); //执行下载任务时注册广播监听下载成功状态 registerbroadcast();
添加权限
<!--网络通信权限--> <uses-permission android:name="android.permission.internet"/> <!--sd卡写入数据权限--> <uses-permission android:name="android.permission.write_external_storage"/> <!--sd卡创建与删除权限--> <uses-permission android:name="android.permission.mount_unmount_filesystems"/> <!--visibility_hidden表示不显示任何通知栏提示的权限--> <uses-permission android:name="android.permission.download_without_notification"/> <!--downloadmanager--> <uses-permission android:name="android.permission.access_download_manager"/> 在清单文件中注册service <!--版本更新服务--> <service android:name="com.github.phoenix.service.downloadservice"></service>
二:监听下载进度
注册contentobserver
三个参数分别是所要监听的uri、false表示精确匹配此uri,true表示可以匹配其派生的uri、contentobserver的派生类实例。
/** * 注册contentobserver */ private void registercontentobserver() { /** observer download change **/ if (downloadobserver != null) { getcontentresolver().registercontentobserver(uri.parse("content://downloads/my_downloads"), true, downloadobserver); } }
查询已下载数据大小
为了提高性能,在这里开启定时任务,每2秒去查询数据大小并发送到handle中更新ui。
/** * 监听下载进度 */ private class downloadchangeobserver extends contentobserver { public downloadchangeobserver() { super(downloadhandler); scheduledexecutorservice = executors.newsinglethreadscheduledexecutor(); } /** * 当所监听的uri发生改变时,就会回调此方法 * * @param selfchange 此值意义不大, 一般情况下该回调值false */ @override public void onchange(boolean selfchange) { scheduledexecutorservice.scheduleatfixedrate(progressrunnable, 0, 2, timeunit.seconds); } } /** * 通过query查询下载状态,包括已下载数据大小,总大小,下载状态 * * @param downloadid * @return */ private int[] getbytesandstatus(long downloadid) { int[] bytesandstatus = new int[]{ -1, -1, 0 }; downloadmanager.query query = new downloadmanager.query().setfilterbyid(downloadid); cursor cursor = null; try { cursor = downloadmanager.query(query); if (cursor != null && cursor.movetofirst()) { //已经下载文件大小 bytesandstatus[0] = cursor.getint(cursor.getcolumnindexorthrow(downloadmanager.column_bytes_downloaded_so_far)); //下载文件的总大小 bytesandstatus[1] = cursor.getint(cursor.getcolumnindexorthrow(downloadmanager.column_total_size_bytes)); //下载状态 bytesandstatus[2] = cursor.getint(cursor.getcolumnindex(downloadmanager.column_status)); } } finally { if (cursor != null) { cursor.close(); } } return bytesandstatus; }
activity与service通信
既然我们要在activity中实时更新下载进度,那么就需要activity绑定service建立通信。
在service中提供一个接口实时回调进度值。用isbindservice来标识activity是否绑定过service,在调用bindservice(serviceconnection conn)方法时,如果绑定成功会返回true,否则返回false,只有返回true时才可以进行解绑,否则报错。
private serviceconnection conn = new serviceconnection() { @override public void onserviceconnected(componentname name, ibinder service) { downloadservice.downloadbinder binder = (downloadservice.downloadbinder) service; downloadservice downloadservice = binder.getservice(); //接口回调,下载进度 downloadservice.setonprogresslistener(new downloadservice.onprogresslistener() { @override public void onprogress(float fraction) { logutil.i(tag, "下载进度:" + fraction); bnp.setprogress((int)(fraction * 100)); //判断是否真的下载完成进行安装了,以及是否注册绑定过服务 if (fraction == downloadservice.unbind_service && isbindservice) { unbindservice(conn); isbindservice = false; mtoast.shorttoast("下载完成!"); } } }); } @override public void onservicedisconnected(componentname name) { } };
三:广播监听下载成功
下载完成,自动安装,记录apk存储路径
在下载成功后把apk存储路径保存到sp中,同时关闭定时器,开启apk安装界面。
/** * 安装apk * @param context * @param apkpath 安装包的路径 */ public static void installapk(context context, uri apkpath) { intent intent = new intent(); intent.setaction(intent.action_view); //此处因为上下文是context,所以要加此flag,不然会报错 intent.setflags(intent.flag_activity_new_task); intent.setdataandtype(apkpath, "application/vnd.android.package-archive"); context.startactivity(intent); }
四:善后处理
1、关闭定时器,线程
当收到下载完成的广播时立即停掉定时器,取消线程。
2、解绑service,注销广播,注销contentobserver
当service解绑的时候,要把监听下载完成的广播和监听下载进度的contentobserver注销。
3、删除apk
当应用安装成功后,再次启动就执行删除apk操作。
/** * 删除上次更新存储在本地的apk */ private void removeoldapk() { //获取老apk的存储路径 file filename = new file(sputil.getstring(constant.sp_download_path, "")); logutil.i(tag, "老apk的存储路径 =" + sputil.getstring(constant.sp_download_path, "")); if (filename != null && filename.exists() && filename.isfile()) { filename.delete(); logutil.i(tag, "存储器内存在老apk,进行删除操作"); } }
五:具体应用
首先上传当前应用版本号给服务器,让服务器检查是否可以进行版本更新;如果可以进行版本更新,则绑定service,开始下载apk,下载完成直接弹出安装界面,同时记录apk存储路径;待下次启动时,检查删除apk。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。