private class MyGestureListener extends GestureDetector.SimpleOnGestureListener { @Override public boolean onFling(MotionEvent e1, MotionEvent e2, float v, float v1) { if(e1.getX() - e2.getX() > MIN_MOVE){ vflp_help.setInAnimation(mContext,R.anim.right_in); vflp_help.setOutAnimation(mContext, R.anim.right_out); vflp_help.showNext(); }else if(e2.getX() - e1.getX() > MIN_MOVE){ vflp_help.setInAnimation(mContext,R.anim.left_in); vflp_help.setOutAnimation(mContext, R.anim.left_out); vflp_help.showPrevious(); } return true; } }
时间: 2024-02-14 20:16:40 浏览: 132
Android编程使用GestureDetector实现简单手势监听与处理的方法
这段代码是一个自定义的手势监听器,主要实现了手势滑动切换视图的功能。具体实现方法如下:
1. 首先,在Activity中创建一个GestureDetector对象,并在onTouchEvent方法中将触摸事件传递给它:
```java
private GestureDetector mGestureDetector = null;
@Override
public boolean onTouchEvent(MotionEvent event) {
return mGestureDetector.onTouchEvent(event);
}
```
2. 然后,在构造函数中初始化GestureDetector对象,并将自定义的MyGestureListener对象设置为它的监听器:
```java
public MyActivity() {
mGestureDetector = new GestureDetector(this, new MyGestureListener());
}
```
3. 最后,在MyGestureListener中实现onFling方法,该方法会在手势滑动时被调用。在onFling方法中,根据手势滑动的方向来切换视图:
```java
private class MyGestureListener extends GestureDetector.SimpleOnGestureListener {
@Override
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) {
if (e1.getX() - e2.getX() > MIN_MOVE) { // 向左滑动
vflp_help.setInAnimation(mContext, R.anim.right_in);
vflp_help.setOutAnimation(mContext, R.anim.right_out);
vflp_help.showNext();
} else if (e2.getX() - e1.getX() > MIN_MOVE) { // 向右滑动
vflp_help.setInAnimation(mContext, R.anim.left_in);
vflp_help.setOutAnimation(mContext, R.anim.left_out);
vflp_help.showPrevious();
}
return true;
}
}
```
在这段代码中,MIN_MOVE表示最小的手势滑动距离,可以根据需要进行调整。当用户向左滑动时,使用R.anim.right_in和R.anim.right_out动画来实现视图的进入和退出;当用户向右滑动时,使用R.anim.left_in和R.anim.left_out动画来实现视图的进入和退出。vflp_help是一个ViewFlipper控件,用于显示多个视图。
阅读全文