android onTouchEvent左右ジェスチャースライドイベント処理
1714 ワード
指が画面上で左右にスライドするイベントを実現するには、オブジェクトGestureDetectorをインスタンス化する必要があります.new GestureDetector(MainActivity.this,onGestureListener);まずリスニング対象のGestureDetectorを実現する.OnGestureListenerは、xまたはy軸の前後変化座標に基づいて左スライドか右スライドかを判断し、異なるジェスチャースライドに基づいてイベント処理doResult(int action)を行い、
次にonTouchEventメソッドを上書きし、onTouchEventメソッドでeventオブジェクトをgestureDetectorに渡す.onTouchEvent(event);処理する.
MainActivity.java
リファレンスhttp://www.cnblogs.com/meieiem/archive/2011/09/16/2178313.html
次にonTouchEventメソッドを上書きし、onTouchEventメソッドでeventオブジェクトをgestureDetectorに渡す.onTouchEvent(event);処理する.
MainActivity.java
import android.view.GestureDetector;
public class MainActivity extends TabActivity implements OnClickListener {
final int RIGHT = 0;
final int LEFT = 1;
private GestureDetector gestureDetector;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
requestWindowFeature(Window.FEATURE_NO_TITLE);
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
gestureDetector = new GestureDetector(MainActivity.this,onGestureListener);
}
private GestureDetector.OnGestureListener onGestureListener =
new GestureDetector.SimpleOnGestureListener() {
@Override
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX,
float velocityY) {
float x = e2.getX() - e1.getX();
float y = e2.getY() - e1.getY();
if (x > 0) {
doResult(RIGHT);
} else if (x < 0) {
doResult(LEFT);
}
return true;
}
};
public boolean onTouchEvent(MotionEvent event) {
return gestureDetector.onTouchEvent(event);
}
public void doResult(int action) {
switch (action) {
case RIGHT:
System.out.println("go right");
break;
case LEFT:
System.out.println("go left");
break;
}
}
}
リファレンスhttp://www.cnblogs.com/meieiem/archive/2011/09/16/2178313.html