我根据this教程创建了一个图库查看器,点击缩略图时遇到问题。 例如,如果我点击第二个缩略图,它会转到第3个,如果我点击第4个,它会转到第5个等等。但是如果我点击第6个,它实际上会转到第6个。 我认为它必须与缩略图的位置和适配器的回收有关,但我无法找到解决方案。
这是我的适配器:
public class ImageAdapter extends BaseAdapter {
private Context ctx;
int imageBackground;
public ImageAdapter(Context c) {
ctx = c;
TypedArray ta = obtainStyledAttributes(R.styleable.Gallery1);
imageBackground = ta.getResourceId(R.styleable.Gallery1_android_galleryItemBackground, 1);
ta.recycle();
}
public int getCount() {
return mImagesUrls.size();
}
public Object getItem(int arg0) {
return arg0;
}
public long getItemId(int arg0) {
return arg0;
}
// Thumbnails gallery
public View getView(int arg0, View arg1, ViewGroup arg2) {
ImageView iv;
if (arg1 == null) {
iv = new ImageView(ctx);
} else {
iv = (ImageView) arg1;
}
// iv.setImageResource(mImagesUrls.get(arg0));
mCache.loadBitmap(mImagesUrls.get(arg0), iv);
iv.setScaleType(ImageView.ScaleType.FIT_XY);
// Image size of the thumbnails
iv.setLayoutParams(new Gallery.LayoutParams(200, 120));
iv.setBackgroundResource(imageBackground);
GalleryTitleTv.setText((arg0 + 1) + " van " + mImagesUrls.size());
return iv;
}
}
提前多多感谢!
编辑: 这是我正在对缩略图的图像进行缓存:
public void loadBitmap(String url, ImageView imageView) {
Bitmap mImageHolder = BitmapFactory.decodeResource(context.getResources(), R.drawable.pic_2);
final String imageKey = url;
final Bitmap bitmap = get(imageKey);
if (bitmap != null) {
imageView.setImageBitmap(bitmap);
} else {
imageView.setImageBitmap(mImageHolder);
BitmapWorkerTask task = new BitmapWorkerTask(imageView);
task.execute(url);
}
}
答案 0 :(得分:0)
我认为它必须与...的位置有关 缩略图和适配器的回收,但我无法绊倒 解决方案。
由于画廊不回收视图,我认为不是。
ImageView iv;
if (arg1 == null) {
iv = new ImageView(ctx);
} else {
iv = (ImageView) arg1;
}
出于同样的原因,这个snipet没用。您可以避免控制并每次分配ImageView
,因为arg1将始终为null。您应该提供有关缓存位图的更多信息。恕我直言,问题是缓存或mImagesUrls相关。