I want to detect three finger tap in android screen.I am able to detect up to two fingers.How to detect three fingers it?I heard some where that android is capable of detecting 2 fingers.Is it so?

link|improve this question

75% accept rate
you might want to look at this post stackoverflow.com/q/5893336/527288 – Kurtis Nusbaum Oct 20 '11 at 19:11
Has not things improved since then? – androidGuy Oct 20 '11 at 19:12
I don't know if things have changed yet. – Kurtis Nusbaum Oct 20 '11 at 19:13
feedback

1 Answer

This code will can help you:

public boolean onTouchEvent(MotionEvent event)
{
    int action = event.getAction();
    switch(action & MotionEvent.ACTION_MASK)
    {
        case MotionEvent.ACTION_POINTER_DOWN:
            // multitouch!! - touch down
            int count = event.getPointerCount(); // Number of 'fingers' in this time
            break;
    }
}
link|improve this answer
I tried that but count is returning 2 even when i tap with three fingers – androidGuy Oct 20 '11 at 19:10
Do any android mobile is capable of detecting three finger tap?If so do u what are the mobiles capable of doing it? – androidGuy Oct 20 '11 at 19:14
Ok, I'm sorry. It's correct because getPointerCount() returns the number of POINTER events that they are events in multitouch. Therefore, if you want to count the number of fingers, you must add one – vicentazo Oct 20 '11 at 19:15
For one and two finger tap i am getting the pointer count correctly,So logic of adding 1 to the pointer count wont work always.I want to differentiate single finger,two finger and three finger tap. – androidGuy Oct 20 '11 at 19:19
feedback

Your Answer

 
or
required, but never shown

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