在我的一个 android 应用程序中,我使用自定义图库在图库中显示图像。(我正在使用自定义画廊以便在交换画廊时一次显示 1 个项目)
这是我用于自定义画廊的代码:
public class CustomGallery extends Gallery {
public CustomGallery(Context context) {
super(context);
}
public CustomGallery(Context context, AttributeSet attrs) {
super(context, attrs);
}
public CustomGallery(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
private boolean isScrollingLeft(MotionEvent e1, MotionEvent e2) {
return e2.getX() > e1.getX();
}
@Override
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX,
float velocityY) {
int kEvent;
if (isScrollingLeft(e1, e2)) { // Check if scrolling left
kEvent = KeyEvent.KEYCODE_DPAD_LEFT;
} else { // Otherwise scrolling right
kEvent = KeyEvent.KEYCODE_DPAD_RIGHT;
}
onKeyDown(kEvent, null);
return true;
}
}
上面的代码工作正常 2.2,2.3 等....但它在 ICS 4.0 中崩溃导致空指针异常 GestureDetector.onTouchEvent。
请帮忙 。
提前致谢。