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线程机制。我们可以根据需要,灵活取舍。