我在玩 GestureDetector 并注意到在 OSX 上的模拟器中运行时永远不会调用 onFling 方法。
我可以让它在windows下工作,但不能在osx上工作。
我使用了这篇文章中的优秀代码: Fling gesture detection on grid layout
这是代码:
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
gestureDetector = new GestureDetector(new MyGestureDetector());
}
public boolean onTouch(View v, MotionEvent event) {
// TODO Auto-generated method stub
gestureDetector.onTouchEvent(event);
return false;
}
protected void addFlingSupportToView(int view) {
// TODO Auto-generated method stub
View v = (View) findViewById(view);
v.setOnTouchListener(this);
}
class MyGestureDetector extends SimpleOnGestureListener {
@Override
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX,
float velocityY) {
try {
if (Math.abs(e1.getY() - e2.getY()) > SWIPE_MAX_OFF_PATH)
return false;
// right to left swipe
if (e1.getX() - e2.getX() > SWIPE_MIN_DISTANCE
&& Math.abs(velocityX) > SWIPE_THRESHOLD_VELOCITY) {
} else if (e2.getX() - e1.getX() > SWIPE_MIN_DISTANCE
&& Math.abs(velocityX) > SWIPE_THRESHOLD_VELOCITY) {
// Log.i("vampidroid", CryptDetails.this.toString());
finish();
}
} catch (Exception e) {
// nothing
}
return false;
}
}
问题是,虽然调用了 OnTouch,但从未调用过 OnFling 事件!
我在windows上玩这个代码,它工作正常。当我更改为 osx 并尝试它时,它不起作用。
在设备上,代码按预期工作。
你知道这可能是什么吗?它仅与osx有关吗?
我在网上没有找到任何东西,所以我想这可能只是我自己的,或者没有人检查过。
提前致谢。