我已经有一个列表视图,其中包含从 url 加载的图像。我想在加载时在每个图像中添加类似旋转圆圈的东西。现在,我使用 i default 作为加载之前加载的图像的替换。我在这里主要发现的是所有类都扩展了 AsyncTask。好吧,我所拥有的是:
我有一个解析 json 的活动。然后我有一个扩展 BaseAdapter的MyCustomAdapter :
//constructor
public MyCustomAdapter (Context c, List<RowItem> items){
this.context = c;
this.sRowItems = items;
imageLoader=new ImageLoader(c.getApplicationContext());
}
.
.
.
public View getView(int position, View convertView, ViewGroup parent){
ViewHolder holder = null;
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Activity.LAYOUT_INFLATER_SERVICE);
if(convertView == null){
convertView = inflater.inflate(R.layout.list_layout, null);
holder = new ViewHolder();
holder.txtName = (TextView) convertView.findViewById(R.id.name);
holder.txtDesc = (TextView) convertView.findViewById(R.id.desc);
holder.imageView = (ImageView) convertView.findViewById(R.id.prof_pic);
convertView.setTag(holder);
}else{
holder = (ViewHolder) convertView.getTag();
}
RowItem sItem = (RowItem) getItem(position);
holder.txtName.setText(sItem.getShopName());
holder.txtDesc.setText(sItem.getShopDesc());
imageLoader.DisplayImage(sItem.getImageUrl(), holder.imageView);
return convertView;
}
然后我有我的图像加载器类。所以我没有使用 AsyncTask,而是使用了普通的 java 线程。其中一部分是这样的:
public class ImageLoader {
MemoryCache memoryCache=new MemoryCache();
FileCache fileCache;
private Map<ImageView, String> imageViews=Collections.synchronizedMap(new WeakHashMap<ImageView, String>());
ExecutorService executorService;
public ImageLoader(Context context){
fileCache=new FileCache(context);
executorService=Executors.newFixedThreadPool(5);
}
final int stub_id=R.drawable.ic_launcher;
public void DisplayImage(String url, ImageView imageView)
{
imageViews.put(imageView, url);
Bitmap bitmap=memoryCache.get(url);
if(bitmap!=null)
imageView.setImageBitmap(bitmap);
else
{
queuePhoto(url, imageView);
imageView.setImageResource(stub_id);
}
}
private void queuePhoto(String url, ImageView imageView)
{
PhotoToLoad p=new PhotoToLoad(url, imageView);
executorService.submit(new PhotosLoader(p));
}
我在stackoverflow中看到了可以使用的答案
ProgressDialog mDialog = new ProgressDialog(getApplicationContext());
但是当我将它放在我的 ImageLoader 类中时,它不适用于我的代码。我很难实现这个加载动画圈。请提供任何帮助。非常感谢。