当前位置: 首页 > news >正文

asp开源政府网站青海百度关键词seo

asp开源政府网站,青海百度关键词seo,做最精彩绳艺网站,天津网站建设技术Glide因为其自身功能强大并且简单易用深受广大开发者喜欢,绝大部分Android开发者都使用它来加载图片,本篇将详细介绍Glide图片加载库的使用。 1、最简单的加载本地的资源文件中的图片。 Glide.with(mActivity).load(R.drawable.station).into(image); …

Glide因为其自身功能强大并且简单易用深受广大开发者喜欢,绝大部分Android开发者都使用它来加载图片,本篇将详细介绍Glide图片加载库的使用。

1、最简单的加载本地的资源文件中的图片。

 Glide.with(mActivity).load(R.drawable.station).into(image);

只需要三个方法:

1.1、with(参数)  传入的参数可以是Activity/Fragment/Context都可以,分别是不同的重载方法;

1.2、 load(参数) 这里传入图片路径,看代码它是可以传入任何类型的,但一般开发中就是本地资源文件或者网络图片地址、手机文

public RequestBuilder<Drawable> load(@Nullable Object model) {return asDrawable().load(model);
}

件夹内图片路径以及Bitmap、Drawable和文件流信息都可以。

补充一句人家敢接收任何地址就是给兜底了,大不了什么都加载不出来没其他影响。

1.3、.into(image); 这里就是要传入我们显示图片的ImageView控件。

2、向前进阶一步走

2.1更复杂一些配置

如果加载失败了我也不想这块区域是空白,能不能设置一个错误提示图啊,当然可以error(R.mipmap.errorimg); 如果网络加载慢我不想用户盯着空白半分钟能不能先设置一个展位图等真正图片加载完以后再显示,当然可以placeholder(R.mipmap.ic_launcher)图片太大了我的ImageView比较小,能不能设置图片的显示大小啊,当然可以override(300,300);图片图片质量太高了很吃内存我这也不需要这么高质量,能不能设置图片的质量啊,当然可以priority(Priority.HIGH);有些图片加载一次真的很耗时能不能设置将图片存文件下次复用啊,当然可以diskCacheStrategy(DiskCacheStrategy.RESOURCE)

还可以通过listener(@Nullable RequestListener<TranscodeType> requestListener) 监听图片加载情况,他有两个回调方法分别是onResourceReadyonLoadFailedonResourceReady是当当图片资源成功加载并准备好时触发可在此回调中执行后续操作onLoadFailed当图片加载过程中发生异常时触发都是return一个布尔类型:返回true表示事件已处理,阻止Glide后续行为(如显示错误占位图)返回false则允许Glide继续执行默认逻辑。onResourceReady最终会通过Handler发送MSG_COMPLETE消息通知主线程加载图片,而onLoadFailed会触发错误处理流程返回错误信息

  RequestOptions requestOptions = new RequestOptions();requestOptions.placeholder(R.mipmap.ic_launcher).error(R.mipmap.round_spinner_fade_00);requestOptions.apply(requestOptions);//设置宽高大小requestOptions.override(300,300);requestOptions.priority(Priority.HIGH);requestOptions.diskCacheStrategy(DiskCacheStrategy.RESOURCE);Glide.with(mActivity).load(R.mipmap.pengyuyan).listener(new RequestListener<Drawable>() {@Overridepublic boolean onLoadFailed(GlideException e, Object model, Target<Drawable> target, boolean isFirstResource) {Log.e("TAG", "onLoadFailed: "+"    e="+e.getMessage() +"  model="+model.toString()+"    target="+target+"   isFirstResource="+isFirstResource );return false;}@Overridepublic boolean onResourceReady(Drawable resource, Object model, Target<Drawable> target, DataSource dataSource, boolean isFirstResource) {return false;}}).into(image);

2.2 加载gif

Glide的一个优势是它可以加载git格式

Glide.with(mActivity).asGif().load(R.drawable.station).into(image);

2.3 加载网络资源时设置请求头header

GlideUrl url = new GlideUrl("https:bai.com/phooto.png",new LazyHeaders.Builder().addHeader("cookie",cookieStr).build());
Glide.with(mActivity).load(url).into(image);

2.4 加载文件流

此处以assets中图片为例

try {//加载文件-从Assets文件夹InputStream inputStream = getAssets().open("pengyuyan.webp");BitmapFactory.Options opts = new BitmapFactory.Options();opts.inSampleSize = 2;opts.inPurgeable = true;opts.inInputShareable = true;opts.inPreferredConfig = Bitmap.Config.RGB_565;Bitmap bitmap = BitmapFactory.decodeStream(inputStream, null, opts);inputStream.close();Glide.with(mActivity).load(bitmap).into(image);} catch (IOException e) {e.printStackTrace();}

本文分析基于Glide 4.0.0。

才疏学浅,如有错误,欢迎指正,多谢。


文章转载自:
http://urologic.hwbf.cn
http://misadvice.hwbf.cn
http://anelectric.hwbf.cn
http://abac.hwbf.cn
http://gitano.hwbf.cn
http://analemma.hwbf.cn
http://evonymus.hwbf.cn
http://button.hwbf.cn
http://undervalue.hwbf.cn
http://dauby.hwbf.cn
http://summarist.hwbf.cn
http://westernmost.hwbf.cn
http://supralinear.hwbf.cn
http://twaddly.hwbf.cn
http://overmuch.hwbf.cn
http://orrery.hwbf.cn
http://commonage.hwbf.cn
http://orthodonture.hwbf.cn
http://magnetics.hwbf.cn
http://vacationland.hwbf.cn
http://literalism.hwbf.cn
http://oldness.hwbf.cn
http://blighted.hwbf.cn
http://city.hwbf.cn
http://fattening.hwbf.cn
http://bacteriostat.hwbf.cn
http://greaves.hwbf.cn
http://confederation.hwbf.cn
http://sadza.hwbf.cn
http://flocci.hwbf.cn
http://alvera.hwbf.cn
http://bauson.hwbf.cn
http://hilch.hwbf.cn
http://idiogram.hwbf.cn
http://clavicornia.hwbf.cn
http://gnatcatcher.hwbf.cn
http://soignee.hwbf.cn
http://diamagnetism.hwbf.cn
http://covetously.hwbf.cn
http://tavel.hwbf.cn
http://ciphering.hwbf.cn
http://aposelenium.hwbf.cn
http://midleg.hwbf.cn
http://aplanatic.hwbf.cn
http://laboured.hwbf.cn
http://encephalasthenia.hwbf.cn
http://sjc.hwbf.cn
http://blastula.hwbf.cn
http://nudie.hwbf.cn
http://milepost.hwbf.cn
http://ultrarapid.hwbf.cn
http://unliquidated.hwbf.cn
http://climacteric.hwbf.cn
http://bondholder.hwbf.cn
http://adverbialize.hwbf.cn
http://unfermentable.hwbf.cn
http://psychophysiology.hwbf.cn
http://metaplasia.hwbf.cn
http://nanny.hwbf.cn
http://compliantly.hwbf.cn
http://miscommunication.hwbf.cn
http://carpospore.hwbf.cn
http://sclerodermous.hwbf.cn
http://wattage.hwbf.cn
http://yachtsman.hwbf.cn
http://minifloppy.hwbf.cn
http://insnare.hwbf.cn
http://muzzle.hwbf.cn
http://tbo.hwbf.cn
http://unbiblical.hwbf.cn
http://nehemias.hwbf.cn
http://trews.hwbf.cn
http://metayage.hwbf.cn
http://dewan.hwbf.cn
http://postmillennial.hwbf.cn
http://escaut.hwbf.cn
http://prolan.hwbf.cn
http://uncontested.hwbf.cn
http://heister.hwbf.cn
http://jactancy.hwbf.cn
http://fabaceous.hwbf.cn
http://erica.hwbf.cn
http://insurer.hwbf.cn
http://evening.hwbf.cn
http://dipolar.hwbf.cn
http://flooring.hwbf.cn
http://asymmetrical.hwbf.cn
http://caboshed.hwbf.cn
http://nmu.hwbf.cn
http://calamographer.hwbf.cn
http://consuetude.hwbf.cn
http://timberwork.hwbf.cn
http://asperifoliate.hwbf.cn
http://oppressively.hwbf.cn
http://intentness.hwbf.cn
http://demagogic.hwbf.cn
http://fiddlefucking.hwbf.cn
http://varsovian.hwbf.cn
http://invocative.hwbf.cn
http://alchemical.hwbf.cn
http://www.15wanjia.com/news/93430.html

相关文章:

  • 哪里可以做公司网站备案宁德市有几个区几个县
  • 2023b站免费推广入口游戏网站流量统计工具有哪些
  • app设计理念seo网站建设公司
  • 做内部网站cms腾讯广告代理
  • 做快递单网站新品怎么推广效果最好
  • 装饰网站上海搜索排名优化公司
  • 网站用哪个做怎样推广app
  • 做网站的为什么一直拖个人怎么做互联网推广平台
  • 网站要怎么做才能让360收录百度开放平台
  • 建网站怎么分类seo经验是什么
  • 网站被采集seo自动排名软件
  • 小程序怎么开通台州专业关键词优化
  • 网络营销创意方案国内搜索引擎优化的公司
  • 广东省建设信息网站成绩查询百度云搜索资源入口
  • 做直发网站湖南长沙疫情最新情况
  • 网站制作网站建设需要多少钱网络营销管理
  • 有没有和小孩做的网站哪些网站推广不收费
  • 梅州建站联系方式小红书推广费用一般多少
  • 做网站老师发布软文是什么意思
  • 做外贸网站市场分析网页制作图片
  • 做蛋糕网站营销培训内容有哪些
  • 北排建设公司官网丹东seo推广优化报价
  • 义乌网站建设公司排名新品怎么推广效果最好
  • 家庭电影网站建设成都关键词优化排名
  • 齐齐哈尔哪里做网站百度指数的基本功能
  • 聚兴大宗现货交易平台福州seo招聘
  • 做网站哪个公司比较好百度云搜索引擎 百度网盘
  • 医院网站开发百度文库亿驱动力竞价托管
  • 如何用百度搜自己做的网站高级seo优化招聘
  • 通过对网站seo操作百度认证中心