我使用了一个教程,向我展示了如何在异步任务中加载位图并将它们设置为imageview,并在加载位图之前在教程中使用这段代码将imageview设置为黑色
static class DownloadedDrawable extends ColorDrawable {
private final WeakReference<DownloadImageTask> bitmapDownloaderTaskReference;
public DownloadedDrawable(DownloadImageTask bitmapDownloaderTask) {
super(Color.BLACK);
bitmapDownloaderTaskReference =
new WeakReference<DownloadImageTask>(bitmapDownloaderTask);
}
public DownloadImageTask getBitmapDownloaderTask() {
return bitmapDownloaderTaskReference.get();
}
}
如何更改imageview,以便在加载之前它是进度对话框中的微调器。
提前致谢。
答案 0 :(得分:0)
你可以尝试使用aquery android库进行延迟加载图像和listview ...下面的代码可以帮助你.....
AQuery aq = new AQuery(mContext);
aq.id(R.id.image1).image("http://data.whicdn.com/images/63995806/original.jpg");
您可以从from this link
下载库