Android的Lazy Load主要体现在网络数据(图片)异步加载、数据库查询、复杂业务逻辑处理以及费时任务操作导致的异步处理等方面。在介绍Android开发过程中,异步处理这个常见的技术问题之前,我们简单回顾下Android开发过程中需要注意的几个地方。
Android应用开发过程中必须遵循单线程模型(Single Thread Model)的原则。因为Android的UI操作并不是线程安全的,所以涉及UI的操作必须在UI线程中完成。但是并非所有的操作都能在主线程中进行,Google工程师在设计上约定,Android应用在5s内无响应的话会导致ANR(Application Not Response),这就要求开发者必须遵循两条法则:1、不能阻塞UI线程,2、确保只在UI线程中访问Android UI工具包。于是,开启子线程进行异步处理的技术方案应运而生。
本文以自定义ListView,异步加载网络图片示例,总结了Android开发过程中,常用的三种异步加载的技术方案。
相关资源:
AndroidManifest.xml
01 |
<manifest xmlns:android= "http://schemas.android.com/apk/res/android" |
02 |
package = "com.doodle.asycntasksample" |
03 |
android:versionCode= "1" |
04 |
android:versionName= "1.0" > |
07 |
android:minSdkVersion= "8" |
08 |
android:targetSdkVersion= "15" /> |
10 |
<uses-permission android:name= "android.permission.INTERNET" /> |
13 |
android:icon= "@drawable/ic_launcher" |
14 |
android:label= "@string/app_name" |
15 |
android:theme= "@style/AppTheme" > |
17 |
android:name= "com.doodle.asynctasksample.ThreadHandlerPostActivity" > |
19 |
<activity android:name= "com.doodle.asynctasksample.AsyncTastActivity" > |
21 |
<activity android:name= "com.doodle.asynctasksample.ThreadHandlerActivity" > |
24 |
android:name= "com.doodle.asynctasksample.BootActivity" |
25 |
android:label= "@string/title_activity_boot" > |
27 |
<action android:name= "android.intent.action.MAIN" /> |
28 |
<category android:name= "android.intent.category.LAUNCHER" /> |
list_item.xml
01 |
< RelativeLayout xmlns:android = "http://schemas.android.com/apk/res/android" |
02 |
xmlns:tools = "http://schemas.android.com/tools" |
03 |
android:layout_width = "match_parent" |
04 |
android:layout_height = "match_parent" > |
07 |
android:layout_width = "match_parent" |
08 |
android:layout_height = "150dp" |
09 |
android:layout_alignParentLeft = "true" |
10 |
android:layout_alignParentRight = "true" |
11 |
android:layout_alignParentTop = "true" > |
14 |
android:id = "@+id/imageView" |
15 |
android:layout_width = "match_parent" |
16 |
android:layout_height = "match_parent" |
17 |
android:src = "<a href=" http://my.oschina.net/asia" target = "_blank" rel = "nofollow" >@android</ a > :drawable/alert_dark_frame" /> |
ImageAdapter.java
02 |
* Create a customized data structure for each item of ListView. |
03 |
* An ImageAdapter inherited from BaseAdapter must overwrites |
04 |
* getView method to show every image in specified style.In this |
05 |
* instance only a ImageView will put and fill in each item of |
08 |
* @author Jie.Geng Aug 01, 2012. |
11 |
public class ImageAdapter extends BaseAdapter { |
12 |
private Context context; |
13 |
private List<HashMap<String, Object>> listItems; |
14 |
private LayoutInflater listContainer; |
16 |
public ImageView imageView; |
18 |
public ImageAdapter(Context context, List<HashMap<String, Object>> listItems) { |
20 |
this .context = context; |
21 |
this .listContainer = LayoutInflater.from(context); |
22 |
this .listItems = listItems; |
26 |
public int getCount() { |
27 |
return listItems.size(); |
31 |
public Object getItem( int position) { |
36 |
public long getItemId( int position) { |
41 |
public View getView( int position, View convertView, ViewGroup parent) { |
42 |
if (convertView == null ) { |
43 |
convertView = listContainer.inflate(R.layout.list_item, null ); |
44 |
imageView = (ImageView) convertView.findViewById(R.id.imageView); |
45 |
convertView.setTag(imageView); |
47 |
imageView = (ImageView) convertView.getTag(); |
49 |
imageView.setImageDrawable((Drawable) listItems.get(position).get( "ItemImage" )); |
一、采用AsyncTask
AsyncTask简介 AsyncTask的特点是任务在主线程之外运行,而回调方法是在主线程中执行,这就有效地避免了使用Handler带来的麻烦。阅读 AsyncTask的源码可知,AsyncTask是使用java.util.concurrent 框架来管理线程以及任务的执行的,concurrent框架是一个非常 成熟,高效的框架,经过了严格的测试。这说明AsyncTask的设计很好的解决了匿名线程存在的问题。 AsyncTask是抽象类,其结构图如下图所示: AsyncTask定义了三种泛型类型 Params,Progress和Result。 Params 启动任务执行的输入参数,比如HTTP请求的URL。 Progress 后台任务执行的百分比。 Result 后台执行任务最终返回的结果,比如String。 子类必须实现抽象方法doInBackground(Params… p) ,在此方法中实现任务的执行工作,比如连接网络获取数据等。通常还应 该实现onPostExecute(Result r)方法,因为应用程序关心的结果在此方法中返回。需要注意的是AsyncTask一定要在主线程中创 建实例。 AsyncTask的执行分为四个步骤,每一步都对应一个回调方法,需要注意的是这些方法不应该由应用程序调用,开发者需要做的 就是实现这些方法。在任务的执行过程中,这些方法被自动调用,运行过程,如下图所示: onPreExecute() 当任务执行之前开始调用此方法,可以在这里显示进度对话框。 doInBackground(Params…) 此方法在后台线程执行,完成任务的主要工作,通常需要较长的时间。在执行过程中可以调用 publicProgress(Progress…)来更新任务的进度。 onProgressUpdate(Progress…) 此方法在主线程执行,用于显示任务执行的进度。 onPostExecute(Result) 此方法在主线程执行,任务执行的结果作为此方法的参数返回
There are a few threading rules that must be followed for this class to work properly: The AsyncTask class must be loaded on the UI thread. This is done automatically as of JELLY_BEAN. The task instance must be created on the UI thread. execute(Params...) must be invoked on the UI thread. Do not call onPreExecute(), onPostExecute(Result), doInBackground(Params...), onProgressUpdate(Progress...) manually. The task can be executed only once (an exception will be thrown if a second execution is attempted.)
AsyncTastActivity.java
01 |
public class AsyncTastActivity extends Activity { |
03 |
private List<String> urlList; |
04 |
private ImageAdapter listItemAdapter; |
05 |
private ArrayList<HashMap<String, Object>> listItem; |
08 |
public void onCreate(Bundle savedInstanceState) { |
09 |
super .onCreate(savedInstanceState); |
10 |
setContentView(R.layout.activity_main); |
11 |
urlList = new ArrayList<String>(); |
12 |
urlList.add( "http://www.baidu.com/img/baidu_sylogo1.gif" ); |
13 |
urlList.add( "http://y2.ifengimg.com/2012/06/24/23063562.gif" ); |
14 |
urlList.add( "http://himg2.huanqiu.com/statics/images/index/logo.png" ); |
16 |
listItem = new ArrayList<HashMap<String, Object>>(); |
18 |
listItemAdapter = new ImageAdapter( this , listItem); |
19 |
ListView listView = (ListView) this .findViewById(R.id.listView1); |
20 |
listView.setAdapter(listItemAdapter); |
22 |
AsyncTask<List<String>, Integer, Hashtable<String, SoftReference<Drawable>>> task = new AsyncTask<List<String>, Integer, Hashtable<String, SoftReference<Drawable>>>() { |
25 |
protected void onPreExecute() { |
30 |
protected Hashtable<String, SoftReference<Drawable>> doInBackground( |
31 |
List<String>... params) { |
32 |
Hashtable<String, SoftReference<Drawable>> table = new Hashtable<String, SoftReference<Drawable>>(); |
33 |
List<String> imageUriList = params[ 0 ]; |
34 |
for (String urlStr : imageUriList) { |
36 |
URL url = new URL(urlStr); |
37 |
Drawable drawable = Drawable.createFromStream( |
38 |
url.openStream(), "src" ); |
39 |
table.put(urlStr, new SoftReference<Drawable>(drawable)); |
40 |
} catch (Exception e) { |
48 |
protected void onPostExecute( |
49 |
Hashtable<String, SoftReference<Drawable>> result) { |
50 |
super .onPostExecute(result); |
51 |
Collection<SoftReference<Drawable>> col = result.values(); |
52 |
for (SoftReference<Drawable> ref : col) { |
53 |
HashMap<String, Object> map = new HashMap<String, Object>(); |
54 |
map.put( "ItemImage" , ref.get()); |
57 |
listItemAdapter.notifyDataSetChanged(); |
62 |
task.execute(urlList); |
66 |
public boolean onCreateOptionsMenu(Menu menu) { |
67 |
getMenuInflater().inflate(R.menu.activity_main, menu); |
二、采用Thread + Handler + Message
Handler简介 Handler为Android提供了一种异步消息处理机制,它包含两个队列,一个是线程列队,另一个是消息列队。使用post方法将线 程对象添加到线程队列中,使用sendMessage(Message message)将消息放入消息队列中。当向消息队列中发送消息后就立 即返回,而从消息队列中读取消息对象时会阻塞,继而回调Handler中public void handleMessage(Message msg)方法。因此 在创建Handler时应该使用匿名内部类重写该方法。如果想要这个流程一直执行的话,可以再run方法内部执行postDelay或者 post方法,再将该线程对象添加到消息队列中重复执行。想要停止线程,调用Handler对象的removeCallbacks(Runnable r)从 线程队列中移除线程对象,使线程停止执行。
ThreadHandlerActivity.java
01 |
public class ThreadHandlerActivity extends Activity { |
03 |
private List<String> urlList; |
04 |
private ImageAdapter listItemAdapter; |
05 |
private LinkedList<HashMap<String, Object>> listItem; |
06 |
private Handler handler; |
07 |
private ExecutorService executorService = Executors.newFixedThreadPool( 10 ); |
10 |
public void onCreate(Bundle savedInstanceState) { |
11 |
super .onCreate(savedInstanceState); |
12 |
setContentView(R.layout.activity_main); |
13 |
urlList = new ArrayList<String>(); |
14 |
urlList.add( "http://www.baidu.com/img/baidu_sylogo1.gif" ); |
15 |
urlList.add( "http://y2.ifengimg.com/2012/06/24/23063562.gif" ); |
16 |
urlList.add( "http://himg2.huanqiu.com/statics/images/index/logo.png" ); |
18 |
listItem = new LinkedList<HashMap<String, Object>>(); |
20 |
listItemAdapter = new ImageAdapter( this , listItem); |
21 |
ListView listView = (ListView) this .findViewById(R.id.listView1); |
22 |
listView.setAdapter(listItemAdapter); |
24 |
handler = new Handler(){ |
26 |
public void handleMessage(Message msg) { |
27 |
HashMap<String, Object> map = (HashMap<String, Object>) msg.obj; |
29 |
listItemAdapter.notifyDataSetChanged(); |
32 |
for ( final String urlStr : urlList) { |
33 |
executorService.submit( new Runnable() { |
37 |
URL url = new URL(urlStr); |
38 |
Drawable drawable = Drawable.createFromStream( |
39 |
url.openStream(), "src" ); |
40 |
HashMap<String, Object> table = new HashMap<String, Object>(); |
41 |
table.put( "ItemImage" , drawable); |
42 |
Message msg = new Message(); |
44 |
msg.setTarget(handler); |
45 |
handler.sendMessage(msg); |
46 |
} catch (Exception e) { |
55 |
public boolean onCreateOptionsMenu(Menu menu) { |
56 |
getMenuInflater().inflate(R.menu.activity_main, menu); |
三、采用Thread + Handler + post方法
使用post方法将Runnable对象放到Handler的线程队列中,该Runnable的执行其实并未单独开启线程,而是仍然在当前Activity的UI线程中执行,Handler只是调用了Runnable对象的run方法。
ThreadHandlerPostActivity.java
01 |
public class ThreadHandlerPostActivity extends Activity { |
03 |
private List<String> urlList; |
04 |
private ImageAdapter listItemAdapter; |
05 |
private LinkedList<HashMap<String, Object>> listItem; |
06 |
private Handler handler = new Handler(); |
07 |
private ExecutorService executorService = Executors.newFixedThreadPool( 10 ); |
10 |
public void onCreate(Bundle savedInstanceState) { |
11 |
super .onCreate(savedInstanceState); |
12 |
setContentView(R.layout.activity_main); |
13 |
urlList = new ArrayList<String>(); |
14 |
urlList.add( "http://www.baidu.com/img/baidu_sylogo1.gif" ); |
15 |
urlList.add( "http://y2.ifengimg.com/2012/06/24/23063562.gif" ); |
16 |
urlList.add( "http://himg2.huanqiu.com/statics/images/index/logo.png" ); |
18 |
listItem = new LinkedList<HashMap<String, Object>>(); |
20 |
listItemAdapter = new ImageAdapter( this , listItem); |
21 |
ListView listView = (ListView) this .findViewById(R.id.listView1); |
22 |
listView.setAdapter(listItemAdapter); |
24 |
for ( final String urlStr : urlList) { |
25 |
executorService.submit( new Runnable() { |
29 |
URL url = new URL(urlStr); |
30 |
Drawable drawable = Drawable.createFromStream( |
31 |
url.openStream(), "src" ); |
32 |
final HashMap<String, Object> table = new HashMap<String, Object>(); |
33 |
table.put( "ItemImage" , drawable); |
34 |
handler.post( new Runnable(){ |
39 |
listItemAdapter.notifyDataSetChanged(); |
43 |
} catch (Exception e) { |
52 |
public boolean onCreateOptionsMenu(Menu menu) { |
53 |
getMenuInflater().inflate(R.menu.activity_main, menu); |
综上所述,我们可以看出,Android API中AsyncTask对于异步处理不是万能的,对于需要循环、多次的任务处理,我们任然需要采用传统的Thread线程机制。我们可以根据需要,灵活取舍。
http://blog.csdn.net/tianxiangshan/article/details/7871667
- [转载]Android 异步加载解决方案
2013-12-25 11:15:47 Android 异步加载解决方案,转载自: http://www.open-open.com/lib/view/open1345017746897.html 请 ...
- 演化理解 Android 异步加载图片
原文:http://www.cnblogs.com/ghj1976/archive/2011/05/06/2038738.html#3018499 在学习"Android异步加载图像小结&q ...
- 演化理解 Android 异步加载图片(转)
演化理解 Android 异步加载图片(转)http://www.cnblogs.com/CJzhang/archive/2011/10/20/2218474.html
- android 异步加载框架 原理完全解析
一.手写异步加载框架MyAsycnTask(核心原理) 1.我为大家手写了一个异步加载框架,涵盖了异步加载框架核心原理. MyAsycnTask.java import android.os.Hand ...
- 实例演示Android异步加载图片
本文给大家演示异步加载图片的分析过程.让大家了解异步加载图片的好处,以及如何更新UI.首先给出main.xml布局文件:简单来说就是 LinearLayout 布局,其下放了2个TextView和5个 ...
- 实例演示Android异步加载图片(转)
本文给大家演示异步加载图片的分析过程.让大家了解异步加载图片的好处,以及如何更新UI.首先给出main.xml布局文件:简单来说就是 LinearLayout 布局,其下放了2个TextView和5个 ...
- [Android]异步加载图片,内存缓存,文件缓存,imageview显示图片时增加淡入淡出动画
以下内容为原创,欢迎转载,转载请注明 来自天天博客:http://www.cnblogs.com/tiantianbyconan/p/3574131.html 这个可以实现ImageView异步加载 ...
- Android异步加载
一.为什么要使用异步加载? 1.Android是单线程模型 2.耗时操作阻碍UI线程 二.异步加载最常用的两种方式 1.多线程.线程池 2.AsyncTask 三.实现ListView图文混排 3-1 ...
- Android异步加载访问网络图片-解析json
来自:http://www.imooc.com/video/7871 推荐大家去学习这个视频,讲解的很不错. 慕课网提供了一个json网址可以用来学习:http://www.imooc.com/api ...
随机推荐
- Cocos2d-x 3.x项目创建
1.首先打开终端,cd到cocos2d-x-3.2目录下,运行命令./setup.py 2. 首先,打开终端cd到目录/cocos2d-x-3.2/tools/cocos2d-console/bin下 ...
- Washing Clothes_01背包
Description Dearboy was so busy recently that now he has piles of clothes to wash. Luckily, he has a ...
- Android自定义View绘图实现拖影动画
前几天在"Android绘图之渐隐动画"一文中通过画线实现了渐隐动画,但里面有个问题,画笔较粗(大于1)时线段之间会有裂隙,我又改进了一下.这次效果好多了. 先看效果吧: 然后我们 ...
- 利用WPF绘图
C#入门经典 25章的一个例子,利用WPF绘图. XAML: <Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/p ...
- ASP开发中服务器控件和普通控件的区别
1.对于服务器按钮控件(即<asp:Button>类型的按钮):服务器响应事件:OnClick客户端响应属性:OnClientClick 2.对于html按钮控件(即<input t ...
- session 和 cookie 的区别和联系
二者的定义: 当你在浏览网站的时候,WEB 服务器会先送一小小资料放在你的计算机上,Cookie 会帮你在网站上所打的文字或是一些选择,都纪录下来.当下次你再光临同一个网站,WEB 服务器会先看看有没 ...
- PowerShell让系统可以执行.ps1文件
.ps1文件是PowerShell写好的脚本文件.在Windows系统中,默认情况下是不允许执行.ps1文件的,那么怎么才能让系统允许执行.ps1文件呢? 什么是“.ps1”文件? 这个是PowerS ...
- nginx的upstream目前支持5种方式的分配(转)
nginx的upstream目前支持5种方式的分配 1.轮询(默认) 每个请求按时间顺序逐一分配到不同的后端服务器,如果后端服务器down掉,能自动剔除. 2.weight 指定轮询几率,weight ...
- Open vSwitch 给虚拟机网卡限流(QoS)
这里我们简单描述下如何通过Open vSwitch给虚拟机限流(出流量),同时测试限流效果.测试环境继续复用<整合Open vSwitch与DNSmasq为虚拟机提供DHCP功能>一文中描 ...
- suse linux修改hostname
SUSELinux中修改hostname需要修改以下两个文件 $vi /etc/HOSTNAME $vi /etc/hosts 然后重启系统即可.