如何android中利用DownloadManager實現(xiàn)一個版本更新功能?相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。
目前成都創(chuàng)新互聯(lián)公司已為1000多家的企業(yè)提供了網(wǎng)站建設(shè)、域名、雅安服務(wù)器托管、網(wǎng)站托管維護、企業(yè)網(wǎng)站設(shè)計、分宜網(wǎng)站維護等服務(wù),公司將堅持客戶導向、應用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。
DownloadManager簡介
DownloadManager是Android 2.3(API level 9)用系統(tǒng)服務(wù)(Service)的方式提供了DownloadManager來處理長時間的下載操作。它包含兩個靜態(tài)內(nèi)部類DownloadManager.Query(用來查詢下載信息)和DownloadManager.Request(用來請求一個下載)。
DownloadManager主要提供了下面幾個方法:
public long enqueue(Request request)把任務(wù)加入下載隊列并返回downloadId,以便后面用于查詢下載信息。若網(wǎng)絡(luò)不滿足條件、Sdcard掛載中、超過最大并發(fā)數(shù)等異常會等待下載,正常則直接下載。
public int remove(long… ids)刪除下載,若取消下載,會同時刪除下載文件和記錄。
public Cursor query(Query query)查詢下載信息,包括下載文件總大小,已經(jīng)下載的大小以及下載狀態(tài)等。
ContentObserver簡介
public void ContentObserver(Handler handler) 所有ContentObserver的派生類都需要調(diào)用該構(gòu)造方法,參數(shù):handler Handler對象用于在主線程中修改UI。
public void onChange(boolean selfChange)當觀察到的Uri中內(nèi)容發(fā)生變化時,就會回調(diào)該方法。所有ContentObserver的派生類都需要重載該方法去處理邏輯。
觀察特定Uri的步驟如下:
1、創(chuàng)建我們特定的ContentObserver派生類,必須重載父類構(gòu)造方法,必須重載onChange()方法去處理回調(diào)后的功能實現(xiàn)。
2、為指定的Uri注冊一個ContentObserver派生類實例,當給定的Uri發(fā)生改變時,回調(diào)該實例對象去處理,調(diào)用registerContentObserver()方法去注冊內(nèi)容觀察者。
3、由于ContentObserver的生命周期不同步于Activity和Service等。因此,在不需要時,需要手動的調(diào)用unregisterContentObserver()注銷內(nèi)容觀察者。
效果圖:
一:執(zhí)行下載
下載配置
downloadManager = (DownloadManager) getSystemService(DOWNLOAD_SERVICE); downloadObserver = new DownloadChangeObserver(); //在執(zhí)行下載前注冊內(nèi)容監(jiān)聽者 registerContentObserver(); DownloadManager.Request request = new DownloadManager.Request(Uri.parse(url)); /**設(shè)置用于下載時的網(wǎng)絡(luò)狀態(tài)*/ request.setAllowedNetworkTypes(DownloadManager.Request.NETWORK_WIFI | DownloadManager.Request.NETWORK_MOBILE); /**設(shè)置通知欄是否可見*/ request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_HIDDEN); /**設(shè)置漫游狀態(tài)下是否可以下載*/ request.setAllowedOverRoaming(false); /**如果我們希望下載的文件可以被系統(tǒng)的Downloads應用掃描到并管理, 我們需要調(diào)用Request對象的setVisibleInDownloadsUi方法,傳遞參數(shù)true.*/ request.setVisibleInDownloadsUi(true); /**設(shè)置文件保存路徑*/ request.setDestinationInExternalFilesDir(getApplicationContext(), "phoenix", "phoenix.apk"); /**將下載請求放入隊列, return下載任務(wù)的ID*/ downloadId = downloadManager.enqueue(request); //執(zhí)行下載任務(wù)時注冊廣播監(jiān)聽下載成功狀態(tài) registerBroadcast();
添加權(quán)限
在清單文件中注冊Service
二:監(jiān)聽下載進度
注冊ContentObserver
三個參數(shù)分別是所要監(jiān)聽的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); } }
查詢已下載數(shù)據(jù)大小
為了提高性能,在這里開啟定時任務(wù),每2秒去查詢數(shù)據(jù)大小并發(fā)送到handle中更新UI。
/** * 監(jiān)聽下載進度 */ private class DownloadChangeObserver extends ContentObserver { public DownloadChangeObserver() { super(downLoadHandler); scheduledExecutorService = Executors.newSingleThreadScheduledExecutor(); } /** * 當所監(jiān)聽的Uri發(fā)生改變時,就會回調(diào)此方法 * * @param selfChange 此值意義不大, 一般情況下該回調(diào)值false */ @Override public void onChange(boolean selfChange) { scheduledExecutorService.scheduleAtFixedRate(progressRunnable, 0, 2, TimeUnit.SECONDS); } } /** * 通過query查詢下載狀態(tài),包括已下載數(shù)據(jù)大小,總大小,下載狀態(tài) * * @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()) { //已經(jīng)下載文件大小 bytesAndStatus[0] = cursor.getInt(cursor.getColumnIndexOrThrow(DownloadManager.COLUMN_BYTES_DOWNLOADED_SO_FAR)); //下載文件的總大小 bytesAndStatus[1] = cursor.getInt(cursor.getColumnIndexOrThrow(DownloadManager.COLUMN_TOTAL_SIZE_BYTES)); //下載狀態(tài) bytesAndStatus[2] = cursor.getInt(cursor.getColumnIndex(DownloadManager.COLUMN_STATUS)); } } finally { if (cursor != null) { cursor.close(); } } return bytesAndStatus; }
Activity與Service通信
既然我們要在Activity中實時更新下載進度,那么就需要Activity綁定Service建立通信。
在Service中提供一個接口實時回調(diào)進度值。用isBindService來標識Activity是否綁定過Service,在調(diào)用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(); //接口回調(diào),下載進度 downloadService.setOnProgressListener(new DownloadService.OnProgressListener() { @Override public void onProgress(float fraction) { LogUtil.i(TAG, "下載進度:" + fraction); bnp.setProgress((int)(fraction * 100)); //判斷是否真的下載完成進行安裝了,以及是否注冊綁定過服務(wù) if (fraction == DownloadService.UNBIND_SERVICE && isBindService) { unbindService(conn); isBindService = false; MToast.shortToast("下載完成!"); } } }); } @Override public void onServiceDisconnected(ComponentName name) { } };
三:廣播監(jiān)聽下載成功
下載完成,自動安裝,記錄APK存儲路徑
在下載成功后把APK存儲路徑保存到SP中,同時關(guān)閉定時器,開啟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、關(guān)閉定時器,線程
當收到下載完成的廣播時立即停掉定時器,取消線程。
2、解綁Service,注銷廣播,注銷ContentObserver
當Service解綁的時候,要把監(jiān)聽下載完成的廣播和監(jiān)聽下載進度的ContentObserver注銷。
3、刪除APK
當應用安裝成功后,再次啟動就執(zhí)行刪除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, "存儲器內(nèi)存在老APK,進行刪除操作"); } }
五:具體應用
首先上傳當前應用版本號給服務(wù)器,讓服務(wù)器檢查是否可以進行版本更新;如果可以進行版本更新,則綁定Service,開始下載APK,下載完成直接彈出安裝界面,同時記錄APK存儲路徑;待下次啟動時,檢查刪除APK。
看完上述內(nèi)容,你們掌握如何android中利用DownloadManager實現(xiàn)一個版本更新功能的方法了嗎?如果還想學到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!