20枚の写真でギャラリーを使用していますが、サムネイルのスクロールが遅すぎて遅れています。
しかし、私はラグとスピードのない90枚の写真で誰かのギャラリーを試しています。
ギャラリーが遅いのはなぜですか?
public View getView(int position, View convertView, ViewGroup parent) {
ImageView imgView = new ImageView(context);
imgView.setImageResource(main.gallery.get(position));
imgView.setLayoutParams(new Gallery.LayoutParams(80, 80));
imgView.setScaleType(ImageView.ScaleType.FIT_XY);
imgView.setBackgroundResource(GalItemBg);
return imgView;
}
編集: 問題は良い例で解決されます。ここではAndroid GalleryView Recycling