0

我使用了一个教程,该教程向我展示了如何在异步任务中加载位图并将它们设置为图像视图,并且在加载位图之前的教程中,使用这段代码将图像视图设置为黑色

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();
}
}

如何更改图像视图,以便在加载之前它是进度对话框中的微调器。

提前致谢。

4

1 回答 1

0

您可以尝试使用查询 android 库来延迟加载图像和列表视图...下面的代码可能对您有所帮助.....

AQuery aq = new AQuery(mContext);
aq.id(R.id.image1).image("http://data.whicdn.com/images/63995806/original.jpg");

您可以从此链接下载库

于 2013-08-27T09:45:29.807 回答