bl双性强迫侵犯h_国产在线观看人成激情视频_蜜芽188_被诱拐的少孩全彩啪啪漫画

怎么在Android中利用DownloadManager實現一個文件下載功能

本篇文章為大家展示了怎么在Android中利用DownloadManager實現一個文件下載功能,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

10年積累的網站設計制作、網站設計經驗,可以快速應對客戶對網站的新想法和需求。提供各種問題對應的解決方案。讓選擇我們的客戶得到更好、更有力的網絡服務。我雖然不認識你,你也不認識我。但先制作網站后付款的網站建設流程,更有龍華免費網站建設讓你可以放心的選擇與我們合作。

Android中DownloadManager實現文件下載

創建下載鏈接

DownloadManager.Request request = new DownloadManager.Request(Uri.parse(url));

設置允許下載的網絡環境

request.setAllowedNetworkTypes(DownloadManager.Request.NETWORK_WIFI);

WIFI網絡 : DownloadManager.Request.NETWORK_WIFI

移動網絡 : DownloadManager.Request.NETWORK_MOBILE

Notification顯示下載進度

// 在Notification顯示下載進度
request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE);
// 設置Title
request.setTitle("更新");
// 設置描述
request.setDescription("正在下載更新文件...");

設置保存路徑

private static final String DIR = "AutoUpdate";
private static final String APK = "MyHome.apk";
private static final String PATH = Environment.getExternalStorageDirectory().getAbsolutePath() + "/" + DIR + "/" + APK;

request.setDestinationInExternalPublicDir(DIR, APK);

下載

下載會返回一個進程ID

DownloadManager downloadManager = (DownloadManager) context.getSystemService(Context.DOWNLOAD_SERVICE);
long id = downloadManager.enqueue(request);

取消下載

通過ID可以需要下載

downloadManager.remove(id);

下載完成的監聽

下載完成,系統會發出廣播,通過注冊廣播監聽者可以監聽到下載完成

廣播的Action為DownloadManager.ACTION_DOWNLOAD_COMPLETE

/**
 * Broadcast intent action sent by the download manager when the user clicks on a running
 * download, either from a system notification or from the downloads UI.
 */
@SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
public final static String ACTION_NOTIFICATION_CLICKED =
  "android.intent.action.DOWNLOAD_NOTIFICATION_CLICKED";

Code

下載

DownloadManager.Request request = new DownloadManager.Request(Uri.parse(url));
// WIFI狀態下下載
request.setAllowedNetworkTypes(DownloadManager.Request.NETWORK_WIFI);
// 設置通知欄
request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE);
request.setTitle("更新");
request.setDescription("正在下載更新文件...");
// 存放路徑
request.setDestinationInExternalPublicDir(DIR, APK);

// 開始下載
DownloadManager downloadManager = (DownloadManager) context.getSystemService(Context.DOWNLOAD_SERVICE);
long id = downloadManager.enqueue(request);

廣播接收者

注冊

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
   package="com.example.kongqingwei.downloadmanagerdemo">

 <!-- 網絡權限 -->
 <uses-permission android:name="android.permission.INTERNET"/>
 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

 <uses-permission android:name="android.permission.MANAGE_USERS"/>

 <application
  android:allowBackup="true"
  android:icon="@mipmap/ic_launcher"
  android:label="@string/app_name"
  android:supportsRtl="true"
  android:theme="@style/AppTheme">
  <activity android:name=".MainActivity">
   <intent-filter>
    <action android:name="android.intent.action.MAIN"/>

    <category android:name="android.intent.category.LAUNCHER"/>
   </intent-filter>

  </activity>

  <receiver android:name=".AutoUpdateBroadcastReceiver">
   <intent-filter>
    <action android:name="android.intent.action.DOWNLOAD_COMPLETE"/>
   </intent-filter>
  </receiver>
 </application>

</manifest>

實現

package com.example.kongqingwei.downloadmanagerdemo;

import android.app.DownloadManager;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.widget.Toast;

/**
 * Created by kongqingwei on 2016/12/19.
 * 廣播接收者
 */
public class AutoUpdateBroadcastReceiver extends BroadcastReceiver {
 @Override
 public void onReceive(Context context, Intent intent) {
  if (DownloadManager.ACTION_DOWNLOAD_COMPLETE.equals(intent.getAction())) {
   Toast.makeText(context, "下載完成", Toast.LENGTH_SHORT).show();
   boolean isInstalled = AutoUpdater.installApk();
   Toast.makeText(context, isInstalled ? "安裝成功" : "安裝失敗", Toast.LENGTH_SHORT).show();
  }
 }
}

上述內容就是怎么在Android中利用DownloadManager實現一個文件下載功能,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注創新互聯行業資訊頻道。

本文標題:怎么在Android中利用DownloadManager實現一個文件下載功能
URL地址:http://vcdvsql.cn/article0/iijhio.html

成都網站建設公司_創新互聯,為您提供網站制作域名注冊品牌網站建設建站公司企業建站網站導航

廣告

聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯

外貿網站建設