搜索以前的问题时,我没有找到任何类似的帖子。
我正在为 Blackberry Storms 开发 MIDP 游戏。我正在使用BlackBerryGameCanvas
和使用回调函数touchEvent
。作为一个论点,我得到了一个TouchEvent
But I want to listen for a TouchGesture
like的实例Swipe
。但是在模拟器触摸屏上滑动后,结果为空:
public void touchEvent(TouchEvent message) {
TouchGesturenow = message.getGesture();
//always getting null as a result
//according to API when user does not perform any gesture
//operation then it would return null otherwise reference
//but here I have performed a swipe gesture then also it is returning null.
}
如果根本不可能,那么我必须使用
getMovePoints(int touch, int[] x, int[] y, int[] time)
..和一些计算。
谁能帮我确认一下:Swipe TouchGesture 不适用于 Blackberry Storm 吗?