Glide Gif加載

綜述

Glide支持Gif加載端姚,且不需要使用自定義的ImageView,直接使用系統(tǒng)的ImageView即可涛贯,接入成本很低坝辫。在做Gif這個(gè)功能的時(shí)候,涉及到以下幾個(gè)功能點(diǎn):
- 帶下載進(jìn)度回調(diào)的圖片下載
- 判斷圖片是否來自緩存
- Gif加載卡頓的問題
- GifWifif自動(dòng)播放邏輯汹粤,以及控制單頁面只有一個(gè)Gif播放的邏輯

帶下載進(jìn)度回調(diào)的圖片下載

Glide底層網(wǎng)絡(luò)庫可選擇使用okhttp命斧,基于Intercepor撰寫ProgressIntercepor:

public class ProgressInterceptor implements Interceptor {
  private DownloadProgressListener progressListener;

  public ProgressInterceptor(DownloadProgressListener progressListener){
    this.progressListener = progressListener;
  }

  @Override
  public Response intercept(Chain chain) throws IOException {
    Response originalResponse = chain.proceed(chain.request());
    return originalResponse.newBuilder()
        .body(new DownloadProgressResponseBody(originalResponse.body(), progressListener))
        .build();
  }

  private static class DownloadProgressResponseBody extends ResponseBody {

    private final ResponseBody responseBody;
    private final DownloadProgressListener progressListener;
    private BufferedSource bufferedSource;

    public DownloadProgressResponseBody(ResponseBody responseBody,
                                        DownloadProgressListener progressListener) {
      this.responseBody = responseBody;
      this.progressListener = progressListener;
    }

    @Override public MediaType contentType() {
      return responseBody.contentType();
    }

    @Override public long contentLength(){
      return responseBody.contentLength();
    }

    @Override public BufferedSource source(){
      if (bufferedSource == null) {
        bufferedSource = Okio.buffer(source(responseBody.source()));
      }
      return bufferedSource;
    }

    private Source source(Source source) {
      return new ForwardingSource(source) {
        long totalBytesRead = 0L;

        @Override public long read(Buffer sink, long byteCount) throws IOException {
          long bytesRead = super.read(sink, byteCount);
          // read() returns the number of bytes read, or -1 if this source is exhausted.
          totalBytesRead += bytesRead != -1 ? bytesRead : 0;

          if (null != progressListener) {
            progressListener.update(totalBytesRead, responseBody.contentLength(), bytesRead == -1);
          }
          return bytesRead;
        }
      };
    }
  }

  public interface DownloadProgressListener {
    void update(long bytesRead, long contentLength, boolean done);
  }
}

實(shí)現(xiàn)Glide的DataFetcher接口,ProgressDataFetcher實(shí)現(xiàn)網(wǎng)絡(luò)數(shù)據(jù)拉取的具體實(shí)現(xiàn):

public class ProgressDataFetcher implements DataFetcher<InputStream> {
  private String url;
  private ProgressInterceptor.DownloadProgressListener listener;
  private Call progressCall;
  private InputStream stream;
  private boolean isCancelled;


  public ProgressDataFetcher(String url, ProgressInterceptor.DownloadProgressListener listener){
    this.url = url;
    this.listener = listener;
  }

  @Override
  public InputStream loadData(Priority priority) throws Exception {
    Request request = new Request.Builder().url(url).build();
    OkHttpClient client = new OkHttpClient.Builder()
        .addInterceptor(new ProgressInterceptor(listener))
        .build();

    try {
      progressCall = client.newCall(request);
      Response response = progressCall.execute();
      if (isCancelled) {
        return null;
      }
      if (!response.isSuccessful()) throw new IOException("Unexpected code " + response);
      stream = response.body().byteStream();
    } catch (IOException e) {
      e.printStackTrace();
      return null;
    }
    return stream;
  }

  @Override
  public void cleanup() {
    if (stream != null) {
      try {
        stream.close();
        stream = null;
      } catch (IOException e) {
        stream = null;
      }
    }
    if (progressCall != null) {
      progressCall.cancel();
    }
  }

  @Override
  public String getId() {
    return url;
  }

  @Override
  public void cancel() {
    isCancelled = true;
  }
}

將ProgressDataFetcher封裝為ProgressModelLoader:

public class ProgressModelLoader implements StreamModelLoader<String> {
  private ProgressInterceptor.DownloadProgressListener listener;

  public ProgressModelLoader(ProgressInterceptor.DownloadProgressListener listener){
    this.listener = listener;
  }

  @Override
  public DataFetcher<InputStream> getResourceFetcher(String model, int width, int height) {
    return new ProgressDataFetcher(model, listener);
  }
}

業(yè)務(wù)層調(diào)用方法:

/**
 * Gilde 帶進(jìn)度回調(diào)的圖片加載
 * Note: Gif 圖片加載嘱兼,disk cache必須是SOURCE/NONE国葬;否則Gif有卡頓
 * 
 * @param imageView
 * @param url
 * @param drawable
 * @param roundDp 可設(shè)置圓角大小
 * @param listener 可為null
 */
public static Target<GlideDrawable> bindGifWithProgress(ImageView imageView, String url,
    Drawable drawable, int roundDp,
    ProgressInterceptor.DownloadProgressListener listener) {
  RequestManager requestManager = Glide.with(imageView.getContext().getApplicationContext());
  DrawableTypeRequest request = null;
  if (listener != null) {
    request = requestManager.using(new ProgressModelLoader(listener)).load(url);
  } else {
    request = requestManager.load(url);
  }
  DrawableRequestBuilder builder = request.dontAnimate();

  if (drawable != null)
    builder.placeholder(drawable);

  if (roundDp != 0)
    builder.transform(
        new GlideRoundTransform(imageView.getContext().getApplicationContext(), roundDp));

  builder.diskCacheStrategy(DiskCacheStrategy.SOURCE);

  return builder.into(imageView);
}

判斷圖片是否來自緩存

業(yè)務(wù)需要判斷Gif圖片是否已經(jīng)在本地緩存,如果未緩存,加載靜態(tài)占位圖汇四,從網(wǎng)絡(luò)加載顯示Gif字樣的圓形進(jìn)度條接奈;如果已緩存,加載Gif通孽,判斷是否播放序宦。

因?yàn)镚lide的緩存邏輯是會(huì)緩存原圖,以及根據(jù)ImageView大小裁剪之后的圖片背苦;所以沒有辦法僅根據(jù)一個(gè)圖片URL判斷緩存是否存在互捌。這里想了一個(gè)折中的方法:先調(diào)用一次禁用網(wǎng)絡(luò)加載的Glide圖片加載,從onResoureReady和onException判斷圖片是否被緩存命中行剂。

這里還是對(duì)Glide的單次加載實(shí)現(xiàn)一個(gè)NetworkDisablingLoader秕噪,來實(shí)現(xiàn)這個(gè)僅從本地加載的功能:

public class NetworkDisablingLoader implements StreamModelLoader<String> {
  @Override public DataFetcher<InputStream> getResourceFetcher(final String model, int width, int height) {
    return new DataFetcher<InputStream>() {
      @Override public InputStream loadData(Priority priority) throws Exception {
        throw new IOException("Forced Glide network failure");
      }
      @Override public void cleanup() { }
      @Override public String getId() { return model; }
      @Override public void cancel() { }
    };
  }
}

業(yè)務(wù)層調(diào)用方法:

/**
 * Glide 僅從本地加載圖片
 * 
 * @param imageView
 * @param url
 * @param defaultImage 不需要,填 -1
 * @param roundDp 可設(shè)置圓角大小
 * @param listener 可為null
 */
public static Target<GlideDrawable> bindWithoutNet(ImageView imageView, String url,
    int defaultImage, int roundDp,
    RequestListener listener) {
  RequestManager requestManager = Glide.with(imageView.getContext().getApplicationContext());
  DrawableTypeRequest request = requestManager.using(new NetworkDisablingLoader()).load(url);
  DrawableRequestBuilder builder = request.dontAnimate();
  if (roundDp != 0) {
    builder.transform(
        new GlideRoundTransform(imageView.getContext().getApplicationContext(), roundDp));
  }
  if (defaultImage != -1) {
    builder.placeholder(defaultImage);
  }
  if (listener != null) {
    builder.listener(listener);
  }
  builder.diskCacheStrategy(DiskCacheStrategy.SOURCE);

  return builder.into(imageView);

}

Gif加載卡頓的問題

Gilde在緩存Gif資源的時(shí)候硼讽,可以有兩種模式:SOURCE和RESULT巢价∩螅卡頓的原因是RESULT類型的緩存造成的固阁。(Glide為了節(jié)省空間,會(huì)對(duì)原始緩存做壓縮生成RESULT城菊;對(duì)于Gif類型而言备燃,這種壓縮算法顯示效率有問題,從RESULT到原始Gif的轉(zhuǎn)化會(huì)很慢)凌唬。這里的解決方法是將緩存的類型設(shè)置為ALL/SOURCE并齐。(在ALL模式下,應(yīng)該優(yōu)先那SOURCE緩存使用客税,所有也不會(huì)有問題)况褪。

Gif播放控制邏輯

為什么做Gif的播放控制邏輯?Gif的播放非常消耗資源更耻,我們應(yīng)該控制單個(gè)頁面正在播放的gif個(gè)數(shù)测垛,這里限定為一個(gè)。此外秧均,還可以在此基礎(chǔ)上實(shí)現(xiàn)Gif Wifi下自動(dòng)播放的邏輯食侮。(當(dāng)頁面滾動(dòng)時(shí)自動(dòng)播放下一個(gè))。
這個(gè)功能主要是根據(jù)RecycleView的LayoutManager實(shí)現(xiàn)的目胡,主要涉及到如下方法:
- linearLayoutManager.findFirstVisibleItemPosition()
- linearLayoutManager.findLastVisibleItemPosition()
- linearLayoutManager.findViewByPosition
- recyclerView.getChildViewHolder(itemView)
- linearLayoutManager.findFirstCompletelyVisibleItemPosition()
- linearLayoutManager.findLastCompletelyVisibleItemPosition()

具體的業(yè)務(wù)流程:
- 通過LinearLayoutManager獲取可見范圍內(nèi)item的范圍
- 在可見的item范圍內(nèi)锯七,找到正在播放Gif的item是否滿足播放條件,如果滿足誉己,直接跳出流程
- 當(dāng)正在播放Gif的item不滿足播放條件眉尸,先對(duì)所有可見item執(zhí)行暫停Gif播放的功能。
- 然后在所有已經(jīng)暫停的Gif item中找到第一個(gè)滿足播放條件的Gif item

具體代碼如下:

public class GifFeedHelper {
  public static final String GIF_TAB_ID = "10283";

  private LinearLayoutManager linearLayoutManager;
  private RecyclerView recyclerView;

  public static WeakReference<GifFeedHelper> gifFeedHelper;


  public GifFeedHelper(LinearLayoutManager linearLayoutManager, RecyclerView recyclerView){
    this.linearLayoutManager = linearLayoutManager;
    this.recyclerView = recyclerView;
    gifFeedHelper = new WeakReference<GifFeedHelper>(this);
  }

  /**
   * 首頁Gif Feed Tab
   * Gif 調(diào)度播放邏輯
   */
  public void dispatchGifPlay() {

    int start_index = linearLayoutManager.findFirstVisibleItemPosition();
    int end_index = linearLayoutManager.findLastVisibleItemPosition();

    if (findCurrentPlayGifCardSatisfy(start_index, end_index))
      return;

    stopAllGifCardOnScreen(start_index, end_index);

    actionFirstGifCardOnScreen(start_index, end_index);
  }

  /**
   * 外部可強(qiáng)制停止頁面內(nèi)Gif Card 的播放
   * Note:HPGifNormalCardPresenter中的點(diǎn)擊事件,需要暫停其他的Gif Card
   * */
  public void forceStopAllGifs() {
    int start_index = linearLayoutManager.findFirstVisibleItemPosition();
    int end_index = linearLayoutManager.findLastVisibleItemPosition();

    stopAllGifCardOnScreen(start_index, end_index);
  }

  private boolean findCurrentPlayGifCardSatisfy(int start_index,int end_index) {

    for(int i= start_index; i<=end_index; i++){
      View itemView = linearLayoutManager.findViewByPosition(i);
      if (null == itemView)
        continue;
      RippleViewHolder holder = (RippleViewHolder) recyclerView.getChildViewHolder(itemView);
      CardPresenter presenter = holder.presenter;
      if(presenter == null)
        continue;

      BasePresenter basePresenter = presenter.get(0); //默認(rèn)是0
      if (basePresenter != null && basePresenter instanceof HPGifNormalCardPresenter) {
        HPGifNormalCardPresenter gifNormalCardPresenter = (HPGifNormalCardPresenter) basePresenter;
        int fullHeight = itemView.getHeight();
        if(fullHeight <=0)
          continue;
        Rect rect = new Rect();
        boolean visible = itemView.getGlobalVisibleRect(rect);
        int visibleHeight = rect.height();
        if(gifNormalCardPresenter.isGifActive() &&
            visible && ((1.0f * visibleHeight / fullHeight) >= 0.3f)) {
          //Fix: 找到滿足條件的第一個(gè)Gif噪猾,之后的Gif強(qiáng)制停止播放
          if (i<end_index)
            stopAllGifCardOnScreen(i+1,end_index);
          return true;
        }
      }
    }

    return false;
  }

  /**
   * 暫停屏幕中所有可見Gif Card的播放
   * */
  private void stopAllGifCardOnScreen(int start_index, int end_index) {


    for (int i = start_index; i <= end_index; i++) {
      View itemView = linearLayoutManager.findViewByPosition(i);
      if (null == itemView)
        continue;
      RippleViewHolder holder = (RippleViewHolder) recyclerView.getChildViewHolder(itemView);
      CardPresenter presenter = holder.presenter;
      if (presenter == null)
        return;
      BasePresenter basePresenter = presenter.get(0); //默認(rèn)是0
      if (basePresenter != null && basePresenter instanceof HPGifNormalCardPresenter) {
        HPGifNormalCardPresenter gifNormalCardPresenter = (HPGifNormalCardPresenter) basePresenter;
        gifNormalCardPresenter.onStop();
      }
    }
  }

  /**
   * 在所有已經(jīng)暫停的Gif Card中找到第一個(gè)滿足播放條件的Gif Card
   * */
  private void actionFirstGifCardOnScreen(int start_index, int end_index) {
    View activeGifView = null;
    for (int i = start_index; i <= end_index; i++) {
      View view = linearLayoutManager.findViewByPosition(i);
      if (null == view)
        continue;

      int fullHeight = view.getHeight();
      if (fullHeight <= 0) {
        continue;
      }

      Rect rect = new Rect();
      boolean visible = view.getGlobalVisibleRect(rect);
      int visibleHeight = rect.height();

      RippleViewHolder holder = (RippleViewHolder) recyclerView.getChildViewHolder(view);
      CardPresenter presenter = holder.presenter;
      if (presenter == null)
        continue;
      BasePresenter basePresenter = presenter.get(0); //默認(rèn)是0
      if (basePresenter == null)
        continue;
      if (visible && ((1.0f * visibleHeight / fullHeight) >= 0.3f)
          && (basePresenter instanceof HPGifNormalCardPresenter)) {
        activeGifView = view;
        break;
      }
    }

    if (activeGifView != null) {
      RippleViewHolder holder = (RippleViewHolder) recyclerView.getChildViewHolder(activeGifView);
      CardPresenter presenter = holder.presenter;
      BasePresenter basePresenter = presenter.get(0); //默認(rèn)是0

      if (basePresenter instanceof HPGifNormalCardPresenter) {
        HPGifNormalCardPresenter gifNormalCardPresenter = (HPGifNormalCardPresenter) basePresenter;
        if (gifNormalCardPresenter.canAutoPlay()) {
          gifNormalCardPresenter.performAutoPlay();
        } else {
          gifNormalCardPresenter.onStart();
        }
      }
    }
  }
}
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末地消,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子畏妖,更是在濱河造成了極大的恐慌脉执,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,968評(píng)論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件戒劫,死亡現(xiàn)場(chǎng)離奇詭異半夷,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)迅细,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門巫橄,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人茵典,你說我怎么就攤上這事湘换。” “怎么了统阿?”我有些...
    開封第一講書人閱讀 153,220評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵彩倚,是天一觀的道長。 經(jīng)常有香客問我扶平,道長帆离,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,416評(píng)論 1 279
  • 正文 為了忘掉前任结澄,我火速辦了婚禮哥谷,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘麻献。我一直安慰自己们妥,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,425評(píng)論 5 374
  • 文/花漫 我一把揭開白布勉吻。 她就那樣靜靜地躺著监婶,像睡著了一般。 火紅的嫁衣襯著肌膚如雪餐曼。 梳的紋絲不亂的頭發(fā)上压储,一...
    開封第一講書人閱讀 49,144評(píng)論 1 285
  • 那天,我揣著相機(jī)與錄音源譬,去河邊找鬼集惋。 笑死,一個(gè)胖子當(dāng)著我的面吹牛踩娘,可吹牛的內(nèi)容都是我干的刮刑。 我是一名探鬼主播喉祭,決...
    沈念sama閱讀 38,432評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼雷绢!你這毒婦竟也來了泛烙?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,088評(píng)論 0 261
  • 序言:老撾萬榮一對(duì)情侶失蹤翘紊,失蹤者是張志新(化名)和其女友劉穎蔽氨,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體帆疟,經(jīng)...
    沈念sama閱讀 43,586評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡鹉究,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,028評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了踪宠。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片自赔。...
    茶點(diǎn)故事閱讀 38,137評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖柳琢,靈堂內(nèi)的尸體忽然破棺而出绍妨,到底是詐尸還是另有隱情,我是刑警寧澤柬脸,帶...
    沈念sama閱讀 33,783評(píng)論 4 324
  • 正文 年R本政府宣布他去,位于F島的核電站,受9級(jí)特大地震影響肖粮,放射性物質(zhì)發(fā)生泄漏孤页。R本人自食惡果不足惜尔苦,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,343評(píng)論 3 307
  • 文/蒙蒙 一涩馆、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧允坚,春花似錦魂那、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,333評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至展运,卻和暖如春活逆,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背拗胜。 一陣腳步聲響...
    開封第一講書人閱讀 31,559評(píng)論 1 262
  • 我被黑心中介騙來泰國打工蔗候, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人埂软。 一個(gè)月前我還...
    沈念sama閱讀 45,595評(píng)論 2 355
  • 正文 我出身青樓锈遥,卻偏偏與公主長得像,于是被迫代替她去往敵國和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子所灸,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,901評(píng)論 2 345

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

  • Android 自定義View的各種姿勢(shì)1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 171,522評(píng)論 25 707
  • 一丽惶、簡(jiǎn)介 在泰國舉行的谷歌開發(fā)者論壇上,谷歌為我們介紹了一個(gè)名叫Glide的圖片加載庫爬立,作者是bumptech钾唬。這...
    天天大保建閱讀 7,454評(píng)論 2 28
  • Glide筆記 一、簡(jiǎn)介 在泰國舉行的谷歌開發(fā)者論壇上侠驯,谷歌為我們介紹了一個(gè)名叫Glide的圖片加載庫知纷,作者是bu...
    AndroidMaster閱讀 3,870評(píng)論 0 27
  • 7.1 壓縮圖片 一、基礎(chǔ)知識(shí) 1陵霉、圖片的格式 jpg:最常見的圖片格式琅轧。色彩還原度比較好,可以支持適當(dāng)壓縮后保持...
    AndroidMaster閱讀 2,487評(píng)論 0 13
  • 自虐營行動(dòng)派第一---最能戰(zhàn)斗的hzy 他用自己的實(shí)際行動(dòng)證明,你還可以對(duì)自己再狠一點(diǎn)效床,讓自虐融入到自己的血液中睹酌。...
    胡兔兔的后花園閱讀 399評(píng)論 0 5