我有一个带有片段的 viewPager 活动。它启动 asyncTask 以下载有关六个缩略图的信息,并在 postExecute 上创建我的图像类的六个对象,其中信息和位图对象为空。创建对象时,它会下载图像。构造函数:
public MyImage(String name, String owner, String time, String date,
String total_rate, String votes, String description) {
//this.thumbnail = BitmapFactory.
Log.d(TAG, "Created image object");
this.name = name;
this.owner = owner;
this.time = time;
this.date = date;
this.total_rate = Double.valueOf(total_rate);
this.votes = votes;
this.description = description;
downloadThumbnail();
}
该片段中有一个带有六个缩略图的 gridView。我可以为其设置默认图像或progressDialog,但是下载图像后如何更改它?设置监听器?PS我不太了解适配器,可能存在问题。