我尝试使用图库在网络中显示图像。
但是当向左或向右转以更改图像时。
该图像显示每次从网络加载大约3秒钟的延迟。
当此图像显示时,可以在背景中加载下一个图像。
或将所有加载的图像保存在缓存中,但这可能会导致内存不足。
我的代码如下:
gallery = (MyGallery) this.findViewById(R.id.gallery_photo);
gallery.setAdapter(new GalleryViewerAdapter(this, URL));
URL是URL的字符串数组。
@Override
public View getView(int position, View convertView, ViewGroup parent) {
ImageView iv = new ImageView(this.mContext);
try {
URL aryURL = new URL(URL[i]);
URLConnection conn = aryURL.openConnection();
conn.connect();
InputStream is = conn.getInputStream();
Bitmap bm = BitmapFactory.decodeStream(is);
is.close();
iv.setImageBitmap(bm);
iv.setScaleType(ImageView.ScaleType.CENTER_INSIDE);
return iv;
}
如何修改我的代码可以避免每次加载和滞后?
最佳答案
public class MyGallery extends Gallery {
public MyGallery(Context context, AttributeSet attrSet) {
super(context, attrSet);
}
@Override
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) {
return false;
}
@Override
protected android.view.ViewGroup.LayoutParams generateLayoutParams (android.view.ViewGroup.LayoutParams p) {
return super.generateLayoutParams(p);
}
}
也许您可以尝试一下。
关于android - 更改图片时的画廊滞后,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8584477/