0
私はアンドロイドにはかなり新しいです。私は私に上記のコードの妥当性を教えてくださいGestureDetectorの使用を学び、コード -GestureDetectorでのonTouchEventの使用
public boolean onTouchEvent(MotionEvent event) {
if (mGestureDetector.onTouchEvent(event))
return true;
else
return false;
}
で、次のスニペットの使用を理解することができ波平ました。 スニペットはこのウェブサイトからのものです。 http://www.tutorialforandroid.com/2009/06/implement-gesturedetector-in-android.html ありがとうございます。
onTouchEvent()は、タッチスクリーンモーションイベントを処理するためのものです.GestureDetector.OnGestureListenerを実装する場合は、onTouchEvent()を実装する必要があります。 onTouchEventはタッチモーションイベントが発生したときに呼び出されます。サブセットのみをリッスンする場合は、GestureDetector.SimpleOnGestureListenerを拡張します。 – Bhavya