如何将onTouchEvent添加到应用程序?

时间:2012-09-07 00:37:05

标签: java android events touch screen

我为android创建了一个非常简单的乒乓应用程序。

看起来很不错,但我有一个问题:

我尝试执行onScreenTouch事件,以便将球拍放在用户的触摸位置。

我的问题是 - 在哪里添加Obj.addOnTouchEvent(this)

什么对象处理屏幕触摸?什么是屏幕对象?

1 个答案:

答案 0 :(得分:1)

任何图形小部件都可以处理触摸事件。通常,视图或活动用于案例。

有几种方法可以处理触摸,但我建议使用GestureListener

public class GestureListener implements GestureDetector.OnGestureListener 
{
    MyView appliedView; //view who responses to graphical gestures

    public GestureListener(MyView currentView) 
    {
        this.appliedView = currentView;
    }

    @Override
    public boolean onScroll(MotionEvent e1, MotionEvent e2, 
            float dx,
            float dy) {
        //make your view response to gestures
        appliedView.onGestureMove(e1, e2, dx, dy);
        return true;
    }

    @Override
    public boolean onDown(MotionEvent arg0) {
        return true;
    }

    @Override
    public boolean onFling(MotionEvent e1, MotionEvent e2, 
            float velocityX,
            float velocityY) {
        return true;
    }

    @Override
    public void onLongPress(MotionEvent e) {

    }

    @Override
    public void onShowPress(MotionEvent e) {

    }

    @Override
    public boolean onSingleTapUp(MotionEvent e) {
        return true;
    }
}

在您的View类中:

public class MyView extends View 
{
    private GestureDetector gestureMgr;

    public MyView(Context context) 
    {
        super(context);
        gestureMgr= new GestureDetector(context, new GestureListener(this));
    }

    @Override
    public boolean onTouchEvent(MotionEvent event) 
    {
        return gestureMgr.onTouchEvent(event);
    }

    public void onGestureMove(MotionEvent e1, MotionEvent e2, float dx, float dy)
    {
        //check obj is touched or not
        //do moving objects around              
    }
}