DownloadManagerAPI和封裝

0 .Thanks

官方文檔

Android系統(tǒng)下載管理DownloadManager功能介紹及使用示例

1 .概述

DowanloadManger:系統(tǒng)的服務(wù),系統(tǒng)開放給第三方應(yīng)用使用的類库北,用于管理下載威沫。
DownloadManager.Query:用來查詢下載信息
DownloadManager.Request:用來請求一個下載

2 .DownloadManager.Request

  • addRequestHeader(String header, String value)

Add an HTTP header to be included with the download request.
添加一個Http的頭到下載的請求。

  • allowScanningByMediaScanner()

If the file to be downloaded is to be scanned by MediaScanner, this method should be called before enqueue(Request) is called.
可以理解為孵构,允許媒體的掃描颈墅。需要在任務(wù)開始前調(diào)用雾袱。

  • setAllowedNetworkTypes(int flags)
    Restrict the types of networks over which this download may proceed.
    限制什么類型的網(wǎng)絡(luò)可以下載:
    • DownloadManager.Request.NETWORK_MOBILE-Wifi或者移動網(wǎng)絡(luò)可以下載
    • DownloadManager.Request.NETWORK_WIFI-只允許Wifi的環(huán)境下芹橡,下載。
  • setAllowedOverMetered(boolean allow)計量網(wǎng)絡(luò)下載煎殷?不懂腿箩。默認允許。

  • setAllowedOverRoaming(boolean allowed)允許漫游網(wǎng)絡(luò)弓乙?默認運行钧惧。

  • setDescription(CharSequence description)
    Set a description of this download, to be displayed in notifications (if enabled)
    設(shè)置下載的描述浓瞪,會顯示在通知欄,如果允許的話追逮。

  • setDestinationInExternalFilesDir(Context context, String dirType, String subPath)
    Set the local destination for the downloaded file to a path within the application's external files directory (as returned by getExternalFilesDir(String).
    設(shè)置文件的存放目錄粹舵。這個方法設(shè)置的是眼滤,應(yīng)用程序內(nèi)能訪問的历涝。其可以用的路徑:context.getExternalFilesDir(String).

  • setDestinationInExternalPublicDir(String dirType, String subPath)
    Set the local destination for the downloaded file to a path within the public external storage directory (as returned by getExternalStoragePublicDirectory(String)).
    設(shè)置文件的存放目錄荧库。這個方法設(shè)置的是,程序的外部存儲场刑。其可以用的路徑:Environment.getExternalFilesDir(String).
    或者蚪战,可以自定義。

  • setDestinationUri(Uri uri)
    Set the local destination for the downloaded file.
    設(shè)置下載地址瞎疼。為uri.

  • setMimeType(String mimeType)
    Set the MIME content type of this download.
    設(shè)置下載類型:MIME 參考手冊
    apk的Mime:application/vnd.android

  • setNotificationVisibility(int visibility)
    Control whether a system notification is posted by the download manager while this download is running or when it is completed.
    設(shè)置通知欄是否顯示和顯示的規(guī)則:

    • VISIBILITY_HIDDEN :不顯示在通知欄
    • VISIBILITY_VISIBLE :顯示在通知欄贼急,下載完成后捏萍,消失照弥。
    • VISIBILITY_VISIBLE_NOTIFY_COMPLETED :顯示在通知欄这揣,下載完成后,也顯示给赞。
    • VISIBILITY_VISIBLE_NOTIFY_ONLY_COMPLETION :顯示在通知欄片迅,只是完成后顯示柑蛇。下載的時候,不顯示耻台。
  • setRequiresCharging(boolean requiresCharging)需要插入才下載?不懂

  • setRequiresDeviceIdle(boolean requiresDeviceIdle)空閑的時候才下載蹋砚?

  • setTitle(CharSequence title)
    設(shè)置下載題目坝咐,顯示在通知欄析恢,如果可以的話。

  • setVisibleInDownloadsUi(boolean isVisible)
    Set whether this download should be displayed in the system's Downloads UI.
    設(shè)置下載的地址URI是否能在通知欄上可見框杜。

3 .DownloadManager.Query

查詢?nèi)蝿?wù)袖肥。

  • setFilterById(long... ids)
    Include only the downloads with the given IDs.
    根據(jù)下載的ID返回任務(wù):DownloadManager.Query

  • setFilterByStatus(int flags)
    include only downloads with status matching any the given status flags.
    根據(jù)Flags去過濾返回:DownloadManager.Query

查詢可以通過:

private void queryDownloadStatus() {
        DownloadManager.Query query = new DownloadManager.Query();
        final DownloadManager downloadManager= (DownloadManager) 
                  this.getSystemService(Context.DOWNLOAD_SERVICE);
        query.setFilterById(TaskID);
        Cursor c = downloadManager.query(query);
        if(c.moveToFirst()) {
            int status = c.getInt(c.getColumnIndex(DownloadManager.COLUMN_STATUS));
            switch(status) {
                case DownloadManager.STATUS_PAUSED:
                case DownloadManager.STATUS_PENDING:
                case DownloadManager.STATUS_RUNNING:
                case DownloadManager.STATUS_SUCCESSFUL:
            }
       }
}

去查詢?nèi)蝿?wù)的狀態(tài)咪辱。

下載的監(jiān)聽:

 /**
     * 得到下載的狀態(tài)
     * @param context       上下文
     * @param downloadId    ID
     * @return  0 : 已經(jīng)下載的量(bytes) , 1 : 總的大小, 2 : 下載的狀態(tài)
     */
    public static int[] getBytesAndStatus(Context context, long downloadId) {
        int[] bytesAndStatus = new int[] { -1, -1, -1 };
        DownloadManager.Query query = new DownloadManager.Query()
                                      .setFilterById(downloadId);
        DownloadManager downloadManager = (DownloadManager)   
                  context.getSystemService(Context.DOWNLOAD_SERVICE);
        Cursor c = null;
        try {
            c = downloadManager.query(query);
            if (c != null && c.moveToFirst()) {
                bytesAndStatus[0] = c.getInt(c.getColumnIndexOrThrow(DownloadManager
                                .COLUMN_BYTES_DOWNLOADED_SO_FAR));
                bytesAndStatus[1] = c.getInt(c.getColumnIndexOrThrow(DownloadManager
                                .COLUMN_TOTAL_SIZE_BYTES));
                bytesAndStatus[2] = c.getInt(c.getColumnIndex(DownloadManager
                                .COLUMN_STATUS));
            }
        } finally {
            if (c != null) {
                c.close();
            }
        }
        return bytesAndStatus;
    }
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末椎组,一起剝皮案震驚了整個濱河市油狂,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌寸癌,老刑警劉巖专筷,帶你破解...
    沈念sama閱讀 206,126評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異蒸苇,居然都是意外死亡磷蛹,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,254評論 2 382
  • 文/潘曉璐 我一進店門溪烤,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人槽驶,你說我怎么就攤上這事。” “怎么了?”我有些...
    開封第一講書人閱讀 152,445評論 0 341
  • 文/不壞的土叔 我叫張陵,是天一觀的道長炮叶。 經(jīng)常有香客問我祟辟,道長,這世上最難降的妖魔是什么稼锅? 我笑而不...
    開封第一講書人閱讀 55,185評論 1 278
  • 正文 為了忘掉前任,我火速辦了婚禮陡蝇,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘恼策。我一直安慰自己涣楷,他們只是感情好鳍寂,可當我...
    茶點故事閱讀 64,178評論 5 371
  • 文/花漫 我一把揭開白布捍壤。 她就那樣靜靜地躺著专酗,像睡著了一般。 火紅的嫁衣襯著肌膚如雪佑笋。 梳的紋絲不亂的頭發(fā)上蒋纬,一...
    開封第一講書人閱讀 48,970評論 1 284
  • 那天荒叶,我揣著相機與錄音些楣,去河邊找鬼艰猬。 笑死冠桃,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的樱报。 我是一名探鬼主播,決...
    沈念sama閱讀 38,276評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼嚷量,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了抖所?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,927評論 0 259
  • 序言:老撾萬榮一對情侶失蹤有序,失蹤者是張志新(化名)和其女友劉穎警绩,沒想到半個月后肩祥,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體混狠,經(jīng)...
    沈念sama閱讀 43,400評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡予弧,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,883評論 2 323
  • 正文 我和宋清朗相戀三年蚓庭,在試婚紗的時候發(fā)現(xiàn)自己被綠了拄踪。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片潘懊。...
    茶點故事閱讀 37,997評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡贸辈,死狀恐怖奢啥,靈堂內(nèi)的尸體忽然破棺而出席吴,到底是詐尸還是另有隱情柬姚,我是刑警寧澤,帶...
    沈念sama閱讀 33,646評論 4 322
  • 正文 年R本政府宣布迹鹅,位于F島的核電站阀蒂,受9級特大地震影響酗失,放射性物質(zhì)發(fā)生泄漏昧绣。R本人自食惡果不足惜规肴,卻給世界環(huán)境...
    茶點故事閱讀 39,213評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望夜畴。 院中可真熱鬧拖刃,春花似錦兑牡、人聲如沸税灌。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,204評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽墩朦。三九已至翻擒,卻和暖如春巩趁,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背蠢古。 一陣腳步聲響...
    開封第一講書人閱讀 31,423評論 1 260
  • 我被黑心中介騙來泰國打工堕战, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人汁政。 一個月前我還...
    沈念sama閱讀 45,423評論 2 352
  • 正文 我出身青樓怀跛,卻偏偏與公主長得像,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子低千,可洞房花燭夜當晚...
    茶點故事閱讀 42,722評論 2 345

推薦閱讀更多精彩內(nèi)容

  • 從初中接觸英語到現(xiàn)在示血,聽到的最多的英語學(xué)習(xí)方法就大聲朗讀棋傍。當時風(fēng)靡全國的瘋狂英語創(chuàng)始人李陽就是心目中的偶像,那時的...
    下班后泡英文閱讀 410評論 0 0
  • 還有一天就要開學(xué)了难审,相信很多家長都為孩子作業(yè)擔心吧瘫拣,我也不例外。 前天我提醒孩子還有2天就開學(xué)了剔宪,孩子說知道了拂铡。繼...
    空心菜_9e82閱讀 570評論 0 2
  • 中秋節(jié)期間壹无,我利用時間和我的助理在市場上進行了實地調(diào)研,目前保險越來越普及感帅,而我們普通人士對保險又是怎么理解或還有...
    金虞閱讀 497評論 2 3
  • 只為自己沒有做過的事情后悔斗锭,不為自己做過的事情后悔
    姜雷_24b1閱讀 183評論 0 0