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

溫馨提示×

溫馨提示×

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

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

SimpleCommand框架ImageLoader API的示例分析

發布時間:2021-08-25 10:08:53 來源:億速云 閱讀:130 作者:小新 欄目:移動開發

這篇文章主要介紹SimpleCommand框架ImageLoader API的示例分析,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

在ImageLoader中有以下幾個不同的構造器:

/**
  * 注意: 次構造器不支持下載進度提示功能
  * @param context
  * @param withCache 是否支持緩存
  *     false--不帶緩存
  *     true--支持緩存功能,默認緩存路徑在外置存儲緩沖目錄中的picasso-big-cache文件夾中
  */
 public ImageLoader(Context context, boolean withCache) {
  this(context, null, withCache);
 }

 /**
  * 支持下載進度提示,以及設置緩存路徑
  * @param context
  * @param listener 下載進度監聽器
  * @param cachePath 緩存路徑字符串
  */
 public ImageLoader(Context context, ProgressListener listener, String cachePath) {
  // TODO extend to support multiple libraries as Glide
  // TODO must be initialized and kept as an member instance to avoid losing cache
  Picasso.Builder builder = setupLoaderClientWithCachePath(context, listener, cachePath);
  setupListener(builder);

  picasso = builder.build();
  picasso.setIndicatorsEnabled(BuildConfig.DEBUG);
  picasso.setLoggingEnabled(BuildConfig.DEBUG);
 }

 /**
  * 支持下載進度提示,以及設置緩存路徑為默認路徑picasso-big-cache
  * @param context
  * @param listener 下載進度監聽器
  * @param withCache 是否支持緩存
  */
 public ImageLoader(Context context, ProgressListener listener, boolean withCache) {
  // TODO extend to support multiple libraries as Glide
  // TODO must be initialized and kept as an member instance to avoid losing cache
  Picasso.Builder builder = setupLoaderClient(context, listener, withCache);
  setupListener(builder);

  picasso = builder.build();
  picasso.setIndicatorsEnabled(BuildConfig.DEBUG);
  picasso.setLoggingEnabled(BuildConfig.DEBUG);
 }
public void shutdown() {
  if (picasso == null) return;

  Logger.d(Logger.TAG, "Image loader has been shutdown");
  picasso.shutdown();
  callback = null;
 }

將ImageLoader停止,一般在Activity停止,或者任務結束時調用此方法將其關閉

public ImageLoader cancelRequest(ImageView imageView) {
  picasso.cancelRequest(imageView);
  return this;
 }

取消之前顯示到ImageView上的請求

public ImageLoader load(final int resourceId) {
  cleanResources();
  this.imageResourceId = resourceId;
  return this;
 }

public ImageLoader load(final String imageUri) {
  cleanResources();
  this.imageUri = imageUri;
  return this;
 }

分別加載本地drawable文件夾下的圖片,以及網絡圖片

public ImageLoader withPlaceholder(final int placeholder) {
  this.placeholder = placeholder;
  return this;
 }

設置ImageLoader下載圖片時的預覽圖

public ImageLoader withErrorImage(final int errorImage) {
  this.errorImage = errorImage;
  return this;
 }

下載圖片失敗時顯示的圖片

public ImageLoader withTag(final String tag) {
  this.tag = tag;
  return this;
 }

public void pause(final String tag) {
  if (picasso == null) return;

  picasso.pauseTag(tag);
 }

public void resume(final String tag) {
  if (picasso == null) return;

  picasso.resumeTag(tag);
 }

以上三個方法依次是

1 下載圖片時添加標簽tag
2 暫停tag標簽的下載任務
3 resume tag標簽的下載任務

public ImageLoader withCallback(final Callback callback) {
  this.callback = callback;
  return this;
 }

給ImageLoader設置下載完成的回調,包含onSuccess和onFailed方法

public ImageLoader fit() {
  this.fit = true;
  return this;
 }

 public ImageLoader centerCrop() {
  this.centerCrop = true;
  return this;
 }

 public ImageLoader centerInside() {
  this.centerInside = true;
  return this;
 }

 public ImageLoader resize(final int widthResId, final int heightResId) {
  this.widthResId = widthResId;
  this.heigthResId = heightResId;
  return this;
 }

分別設置Picasso下載圖片時的相應屬性, 可以參考ImageView的scaleType屬性

public void into(final ImageView imageView) {
  run(imageView);
 }

into方法調用內部run方法,并啟動下載任務。 此方法需要在以上所有的API之后調用。

以上是“SimpleCommand框架ImageLoader API的示例分析”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

凤城市| 渑池县| 峨眉山市| 柳州市| 额敏县| 武功县| 手游| 武威市| 敦煌市| 昭通市| 清流县| 汶上县| 家居| 濮阳市| 东阳市| 长白| 冕宁县| 景东| 商河县| 仙桃市| 五台县| 大名县| 哈尔滨市| 盐池县| 白玉县| 萝北县| 宜昌市| 苗栗市| 关岭| 宝鸡市| 东山县| 图木舒克市| 华坪县| 长汀县| 呼伦贝尔市| 郧西县| 双辽市| 札达县| 江安县| 阿拉善盟| 叙永县|