- 1、本文档共13页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
listView异步图片缓存(国外英语资料)
listView异步图片缓存(国外英语资料)
Android image asynchronous download and cache - Multithreading For Performance
Category: Android development summary 2012-04-27 16:53 838 reading reviews (3) collecting tips
An overview of the
The purpose of this article is to solve it
The ListView loads the performance tuning of images from the network.
At the same time learning
Knowledge of Android multithreading and image caching.
The body of the
To make interactive applications better, the UI main thread is likely to do less skilled work. Any long, time-consuming task that may cause you to suspend (ANR) program should be handled in another thread. The typical long time task is the network operation, which has an unknowable delay. When dealing with a long, time-consuming task, if the task is presented to the user, they will tolerate a certain amount of waiting. Conversely, if the program dies there, it will make users irritable.
In this article, we created a simple image download program to illustrate this pattern, and we used images downloaded from the web to populate the ICONS in the ListView. Creating an asynchronous task to download images in the background will make our programs faster.
Image Downloader
Downloading images on the web is a simple way to implement the HTTP related classes provided by the Android FrameWork. Heres a realization:
[Java] view plaincopyprint?
Static Bitmap downloadBitmap (String url) {
Final AndroidHttpClient = androidhttpclient.newinstance ( Android );
Final HttpGet getRequest = new HttpGet (url);
Try {
HttpResponse response = client.execute (getRequest);
Final int statusCode = response. GetStatusCode (). GetStatusCode ().
If (statusCode! = httpstatus.sc_ok) {
Log.w ( ImageDownloader , Error + statusCode + while retrieving bitmap from + url);
Return null;
}
The final HttpEntity entity = response.getentity ()
If (entity! = null) {
InputStream InputStream = null;
Try {
InputStream = entity. GetContent ();
The final Bitmap Bitmap = bitmapfactory.decodestream (in
您可能关注的文档
最近下载
- 苏教版小学五年级上册数学全册教学课件.pptx VIP
- 预应力混凝土用钢材(钢丝、钢棒和钢绞线).doc VIP
- 六年级 句子练习.doc VIP
- DB11-T 1071-2025 北京市排水管渠工程施工质量检验标准.docx VIP
- 热负荷延续时间表.xls VIP
- 山东省烟台市中英文学校2023-2024学年高一下学期期末检测数学试题.docx VIP
- 2025年一级建造师《机电实务》三色速记手册.pdf VIP
- J B∕T 4091-2014 煤矿防爆特殊型蓄电池式电机车基本技术条件.pdf VIP
- 《学记》导读课件.ppt VIP
- 苏教版六年级上册数学全册教学课件 (2).pptx VIP
文档评论(0)