91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Android使用AsyncTask加載圖片的操作流程

發布時間:2020-09-29 06:41:53 來源:腳本之家 閱讀:260 作者:timshinlee 欄目:移動開發

加載圖片基本操作

一、創建AsyncTask子類

  • 將ImageView的弱引用設置為成員變量,創建構造函數傳入ImageView對象。
  • 調用指定大小解析Bitmap方法。
  • 因為是弱引用,所以必須判斷引用是否被回收。如果異步任務完成前,用戶離開Activity或者設置發生改變,ImageView也可能不存在。
class BitmapWorkerTask extends AsyncTask<Integer, Void, Bitmap> {
  private final WeakReference<ImageView> imageViewReference;
  private int data = 0;
  public BitmapWorkerTask(ImageView imageView) {
    // Use a WeakReference to ensure the ImageView can be garbage collected
    imageViewReference = new WeakReference<ImageView>(imageView);
  }
  // Decode image in background.
  @Override
  protected Bitmap doInBackground(Integer... params) {
    data = params[0];
    return decodeSampledBitmapFromResource(getResources(), data, 100, 100));
  }
  // Once complete, see if ImageView is still around and set bitmap.
  @Override
  protected void onPostExecute(Bitmap bitmap) {
    if (imageViewReference != null && bitmap != null) {
      final ImageView imageView = imageViewReference.get();
      if (imageView != null) {
        imageView.setImageBitmap(bitmap);
      }
    }
  }
}

二、創建異步任務實例對象,開始執行

public void loadBitmap(int resId, ImageView imageView) {
  BitmapWorkerTask task = new BitmapWorkerTask(imageView);
  task.execute(resId);
}

處理并發

因為ListView和GridView復用子布局,無法保證異步任務完成時,相關的布局沒有被回收。也無法保證異步任務完成時間的先后順序。所以必須處理并發事件。

一、創建BitmapDrawable子類

該類專門用來保存Bitmap及其對應的異步任務

static class AsyncDrawable extends BitmapDrawable {
  private final WeakReference<BitmapWorkerTask> bitmapWorkerTaskReference;
  public AsyncDrawable(Resources res, Bitmap bitmap,
      BitmapWorkerTask bitmapWorkerTask) {
    super(res, bitmap);
    bitmapWorkerTaskReference =
      new WeakReference<BitmapWorkerTask>(bitmapWorkerTask);
  }
  public BitmapWorkerTask getBitmapWorkerTask() {
    return bitmapWorkerTaskReference.get();
  }
}

二、綁定AsyncDrawable

創建AsyncDrawable并傳入BitmapWorkerTask對象,imageView設置為該AsyncDrawable再開始異步任務

public void loadBitmap(int resId, ImageView imageView) {
  if (cancelPotentialWork(resId, imageView)) {
    final BitmapWorkerTask task = new BitmapWorkerTask(imageView);
    final AsyncDrawable asyncDrawable =
        new AsyncDrawable(getResources(), mPlaceHolderBitmap, task);
    imageView.setImageDrawable(asyncDrawable);
    task.execute(resId);
  }
}

cancelPotentialWork這個方法用于調用方法獲取控件對應異步任務,判斷是否與當前任務一致

public static boolean cancelPotentialWork(int data, ImageView imageView) {
  final BitmapWorkerTask bitmapWorkerTask = getBitmapWorkerTask(imageView);
  if (bitmapWorkerTask != null) {
    final int bitmapData = bitmapWorkerTask.data;
    // If bitmapData is not yet set or it differs from the new data
    if (bitmapData == 0 || bitmapData != data) {
      // Cancel previous task
      bitmapWorkerTask.cancel(true);
    } else {
      // The same work is already in progress
      return false;
    }
  }
  // No task associated with the ImageView, or an existing task was cancelled
  return true;
}

這個getBitmapWorkerTask()方法用于獲取圖片對應異步任務

private static BitmapWorkerTask getBitmapWorkerTask(ImageView imageView) {
  if (imageView != null) {
    final Drawable drawable = imageView.getDrawable();
    if (drawable instanceof AsyncDrawable) {
      final AsyncDrawable asyncDrawable = (AsyncDrawable) drawable;
      return asyncDrawable.getBitmapWorkerTask();
    }
  }
  return null;
}

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對億速云的支持。如果你想了解更多相關內容請查看下面相關鏈接

向AI問一下細節

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

AI

阳原县| 南充市| 开封县| 伊宁县| 吴桥县| 东丰县| 务川| 枣阳市| 开封县| 麻阳| 罗定市| 如皋市| 正安县| 博野县| 来凤县| 准格尔旗| 济源市| 伽师县| 游戏| 吉首市| 营山县| 南川市| 唐河县| 丹凤县| 丰都县| 钟祥市| 玉环县| 岢岚县| 定边县| 横山县| 广汉市| 河南省| 富川| 崇义县| 抚远县| 定襄县| 措美县| 江都市| 秦安县| 乌海市| 谷城县|