文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

SimpleCommand框架ImageLoader API的示例分析

2023-05-30 19:04

关注

这篇文章主要介绍SimpleCommand框架ImageLoader API的示例分析,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

在ImageLoader中有以下几个不同的构造器:

 public ImageLoader(Context context, boolean withCache) {  this(context, null, withCache); }  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); }  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的示例分析”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注编程网行业资讯频道!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯