我有一个自定义 ImageView 子类,我用它来使用 AsyncTask 获取 URL 中的图像。但是,似乎无论我做什么,列表视图填充都会暂停,直到获取图像。
public void setImageURL(final String url) {
// do we have url in the cache?
Bitmap bitmap = mCache.getBitmap(url);
if(bitmap == null) {
new AsyncTask<Void, Void, Bitmap>() {
protected Bitmap doInBackground(Void... p) {
Bitmap bm = null;
try {
URL aURL = new URL(url);
URLConnection conn = aURL.openConnection();
conn.setUseCaches(true);
conn.connect();
InputStream is = conn.getInputStream();
BufferedInputStream bis = new BufferedInputStream(is);
bm = BitmapFactory.decodeStream(bis);
bis.close();
is.close();
} catch(IOException e) {
e.printStackTrace();
}
if(bm == null) {
return null;
}
return bm;
}
protected void onPostExecute(Bitmap bmp) {
if(bmp == null) {
return;
}
mCache.cacheBitmap(url, bmp);
setImageBitmap(bmp);
}
}.execute();
} else {
setImageBitmap(bitmap);
}
}
为什么异步任务应该阻止与列表人口有关的任何事情?