ギャラリービューに画像を読み込んでいますが、画像をスクロールしているときに、画像が不安定であるか、動かなくなっているように見えます。スムーズにスクロールするギャラリーが必要です。これは、10.1Samsungギャラクシータブレットをスクロールしたときにのみ発生します。これを解決するのを手伝ってください。
私は以下のコードを使用します
@Override
public View getView(int position, View convertView, ViewGroup parent) {
final int pos = position;
View retval = LayoutInflater.from(parent.getContext()).inflate(
R.layout.horrizontallistitem, null);
final ImageView imgitem = (ImageView) retval
.findViewById(R.id.hlvItem);
try {
imgitem.setImageBitmap(CommonKeys
.getBitmapFromAsset("_images/" + dataObjects[pos]
+ ".png"));
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return retval;
}