我使用了一个教程,该教程向我展示了如何在异步任务中加载位图并将它们设置为图像视图,并且在加载位图之前的教程中,使用这段代码将图像视图设置为黑色
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();
}
}
如何更改图像视图,以便在加载之前它是进度对话框中的微调器。
提前致谢。