私はAndroidプログラミングに少し慣れていないので、最近、単純なジェスチャーの処理に注意を向けました。GestureDetectorとリスナーについて知っており、必要な単純なジェスチャ(onDown、onFling、onScroll)を正常に実装しました。問題は、SimpleOnGestureListenerクラスでは使用できないonUpメソッドが必要なことです。アクティビティとカスタムビューがあります。ビューは実際には何もしません。背景色を変更するだけです。アクティビティですべてのイベント処理を行っています。
私が試したのは、ビューのonTouchListenerのonTouchメソッドでACTION_UPイベントを処理することですが、この方法ではonFLingは機能しません。ここで解決策についても読みました:GestureDetectorのOnUpイベント。これは、onTouchEventを上書きする必要があると言っていますが、どのonTouchEventをどこで、どのように上書きする必要があるかがわかりませんでした。私は現在のコードを挿入しています、多分それは助けになります。:)
public class Main extends Activity
{
private GestureDetector gDetector;
public CustomView cView;
View.OnTouchListener gestureListener;
private static final int SWIPE_MIN_DISTANCE = 120;
private static final int SWIPE_MAX_OFF_PATH = 250;
private static final int SWIPE_THRESHOLD_VELOCITY = 200;
public Vibrator vibrator;
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
vibrator = (Vibrator)getApplicationContext().getSystemService(Context.VIBRATOR_SERVICE);
gDetector=new GestureDetector(this, new gListener());
gDetector.setIsLongpressEnabled(true);
gestureListener=new View.OnTouchListener(){
public boolean onTouch(View v, MotionEvent event)
{
if(event.getAction()==MotionEvent.ACTION_UP)
{
cView.setBackgroundColor(Color.RED);
return true;
}
else
return gDetector.onTouchEvent(event);
}
};
cView=new CustomView(this);
cView.setOnTouchListener(gestureListener);
cView.setBackgroundColor(Color.BLACK);
cView.setLongClickable(true);
setContentView(cView);
}
class gListener extends GestureDetector.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;
if(e1.getX() - e2.getX() > SWIPE_MIN_DISTANCE && Math.abs(velocityX) > SWIPE_THRESHOLD_VELOCITY) {
cView.setBackgroundColor(Color.WHITE);
} else if (e2.getX() - e1.getX() > SWIPE_MIN_DISTANCE && Math.abs(velocityX) > SWIPE_THRESHOLD_VELOCITY) {
cView.setBackgroundColor(Color.GRAY);
}
} catch (Exception e) {
// nothing
}
return false;
}
@Override
public boolean onScroll (MotionEvent e1, MotionEvent e2, float distanceX, float distanceY)
{
vibrator.vibrate(30);
Log.d("Event", "MOVE");
return true;
}
@Override
public boolean onDown(MotionEvent e)
{
cView.setBackgroundColor(Color.BLUE);
Log.d("Event", "DOWN");
return true;
}
@Override
public boolean onSingleTapUp(MotionEvent e)
{
Log.d("Event", "UP");
return true;
}
}
}