So I have a customdrawableview applied to my activity.

I'm trying to implement a motion listen to the view so that I can detect different touch events in different locations. However, I don't seem to even get a response from Touch Down.

Here's the relevant part of my code:

public class CustomDrawableView extends View implements OnTouchListener
{      
    public CustomDrawableView(Context context)
    {
        super(context);         
    }

    @Override
    protected void onDraw(Canvas canvas)
    {
        super.onDraw(canvas);
        mDrawBackGround(canvas);
        mDrawHexPanel(canvas);
        mDrawHuePanel(canvas);
        mDrawGreyScaleHexPanel(canvas);
        mDrawHuePointer(canvas);
    }

    @Override
    public boolean onTouch(View CustomDrawableView, MotionEvent event) 
    {
        float touchX = event.getX();
        float touchY = event.getY();

        switch (event.getAction())
        {
            case MotionEvent.ACTION_DOWN:


                    pointerTouch=true;
                    cpRed=255;
                    cpGreen=108;
                    cpBlue=0;                           
                    invalidate();                       
                    break;
        }
        return true;
    }

So what am I doing wrong?

link|improve this question

You did register the listener? – iuliux Apr 6 '11 at 21:40
feedback

3 Answers

up vote 1 down vote accepted

To get multi-touch events, you should use the methods getX(int pointer) and getY(int pointer) which returns the position of each touch point.

You can know how many fingers are on screen with the method getPointerCount().

(Methods from the MotionEvent)

Also, the ACTION_DOWN are fired only when the finger touch for the first time, if it's drag, the next events are going to be ACTION_MOVE.

You are overriding onTouch(View arg0, MotionEvent arg1), but to listen the touch events from the View you are creating, you should override onTouchEvent(MotionEvent evt).

link|improve this answer
Marcos is entirely right, especially about the last part. And remember if you want to do something with the coordinates of your touch event, your variables touchX and touchY are returning the coordinates of the events. Also, ACTION_UP happens when you take your finger off of the screen. Good luck! – Amplify91 Apr 6 '11 at 21:45
Looks like I was actually overcomplicating things for myself thank you very much now I know it's working I can work on things from there. – Phil Apr 6 '11 at 22:35
feedback

At the moment your class only implements the interface. You have to register the OnTouchListener to your view by calling this.setOnLongClickListener(this).

link|improve this answer
feedback

Add the listener registration in the constructor of the CustomDrawableView class

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.