亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Handler實現線程之間的通信下載文件動態更新進度條

發布時間:2020-08-20 16:55:16 來源:腳本之家 閱讀:228 作者:Joah 欄目:移動開發

1. 原理

每一個線程對應一個消息隊列MessageQueue,實現線程之間的通信,可通過Handler對象將數據裝進Message中,再將消息加入消息隊列,而后線程會依次處理消息隊列中的消息。

2. Message

初始化:一般使用Message.obtain()方法獲取一個消息對象,該方法會檢查Message對象池中是否存在可重復利用的對象,若無,才會new一個新對象。

what:相當于Message的標識符,區別于其它消息。

arg1、arg2:int類型,可傳遞整數。

obj:object類型,可傳遞任意對象。

3. 發送消息

在子線程中可調用主線程的handler.sendMessage(msg)進行發送消息,經過一系列方法調用,會觸發handler的handleMessage方法,從而進行消息處理。

發送消息的主要方法:

handler.sendMessage(Message msg);
handler.sendMessageAtTime(Message msg, int time);
handler.sendMessageDelayed(Message msg, int time);

sendMessageAtTime()sendMessageDelayed()區別在于前者是在指定時間發送消息,可配合SystemClock.uptimeMillis()使用;而后者則是延時發送消息。

除了SendMessage()方法以外,還可以通過post()方法發送消息:

handler.post(Runnable r);
handler.postDelayed(Runnable r, int time);

sendMessage()與post()的區別:https://www.jb51.net/article/120624.htm

4. 內存泄漏

https://www.jb51.net/article/120627.htm

5. 通過Handler對象實現下載文件動態更新進度條

AndroidManifest加入權限聲明:

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:orientation="vertical"
 android:padding="10dp"
 tools:context="com.studying.network.DownloadActivity">
 <ProgressBar
 android:id="@+id/progress_bar"
 
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:max="100" />
 <Button
 android:id="@+id/download"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:layout_marginTop="10dp"
 android:text="@string/download" />
</LinearLayout>

Activity:

public class DownloadActivity extends Activity {
 private static final int DOWNLOAD_MESSAGE_CODE = 100001;
 private static final int DOWNLOAD_MESSAGE_FAIL_CODE = 100002;
 private static final String APP_URL = "http://clfile.imooc.com/class/assist/119/1328281/Android%20Studio%20教輔%20.pdf";
 private MyHandler mHandler;
 private ProgressBar mProgressBar;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_download);
 findViewById(R.id.download).setOnClickListener(new View.OnClickListener() {
 @Override
 public void onClick(View v) {
 //開啟子線程
 new Thread(new Runnable() {
  @Override
  public void run() {
  download(APP_URL);
  }
 }).start();
 }
 });
 mProgressBar = (ProgressBar) findViewById(R.id.progress_bar);
 mHandler = new MyHandler(this);
 }
 private void download(String appUrl) {
 try {
 URL url = new URL(appUrl);
 URLConnection conn = url.openConnection();
 InputStream in = conn.getInputStream();
 int contentLength = conn.getContentLength();//獲取文件總大小
 String downloadPath = Environment.getExternalStorageDirectory() + File.separator + "imooc" + File.separator;
 File file = new File(downloadPath);
 if (!file.exists()) {
 file.mkdir();
 }
 String fileName = downloadPath + "test.pdf";
 File apkFile = new File(fileName);
 if (apkFile.exists()) {
 apkFile.delete();
 }
 int downloadSize = 0;//記錄已經下載的大小
 byte[] bytes = new byte[1024];
 int length = 0;
 OutputStream out = new FileOutputStream(fileName);
 while ((length = in.read(bytes)) != -1) {
 out.write(bytes, 0, length);
 downloadSize += length;
 Message msg = Message.obtain();
 msg.obj = downloadSize / contentLength * 100;//progress的值為0到100,因此得到的百分數要乘以100
 msg.what = DOWNLOAD_MESSAGE_CODE;
 mHandler.sendMessage(msg);
 }
 in.close();
 out.close();
 } catch (IOException e) {
 notifyDownloadFailed();
 e.printStackTrace();
 }
 }
 private void notifyDownloadFailed() {
 Message msg = Message.obtain();
 msg.what = DOWNLOAD_MESSAGE_FAIL_CODE;
 mHandler.sendMessage(msg);
 }
 private static class MyHandler extends Handler{
 private WeakReference<DownloadActivity> weakReference;
 MyHandler(DownloadActivity activity) {
 this.weakReference = new WeakReference<>(activity);//以弱引用的形式傳遞Activity,避免內存泄漏
 }
 @Override
 public void handleMessage(Message msg) {
 super.handleMessage(msg);
 DownloadActivity activity = weakReference.get();
 //消息處理
 switch (msg.what) {
 case DOWNLOAD_MESSAGE_CODE:
  activity.mProgressBar.setProgress((Integer) msg.obj);
  break;
 case DOWNLOAD_MESSAGE_FAIL_CODE:
  Toast.makeText(activity, "下載失敗!", Toast.LENGTH_SHORT).show();
  break;
 }
 }
 }
}

總結

以上所述是小編給大家介紹的Handler實現線程之間的通信下載文件動態更新進度條,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

两当县| 银川市| 景德镇市| 鄂托克前旗| 湖口县| 永德县| 涞源县| 台湾省| 清苑县| 前郭尔| 陆良县| 肥城市| 东山县| 嘉义县| 汾阳市| 游戏| 枣庄市| 禄劝| 岳池县| 壶关县| 阳曲县| 甘洛县| 黔南| 东丰县| 墨脱县| 鹿邑县| 金沙县| 新干县| 武义县| 万宁市| 安丘市| 牟定县| 出国| 民乐县| 云龙县| 永顺县| 金华市| 屯门区| 东莞市| 沾化县| 永宁县|