我使用 dispatchTouchEvent 使用以下代码进行滑动手势
@Override
public boolean dispatchTouchEvent(MotionEvent ev) {
// TODO Auto-generated method stub
boolean result = super.dispatchTouchEvent(ev);
// disable the gesture in this screen because we have
return gDetector.onTouchEvent(ev);
}
我想使用 SignatureView 使用 https://github.com/CoatedMoose/CustomViews/blob/master/library/src/com/coatmoose/customviews/SignatureView.java来捕获客户签名, 所以我想禁用滑动手势时用户在 SignatureView 中单击,我该怎么做?