After many experiments with these two onTouchEvent and onTouch i come up that the onTouch works everywhere you want (I mean if it's activity or view) as long as you have declare the interface and put the Listener right! On the other hand onTouchEvent is working only inside a View! Does I assume right or not?Is this the real difference?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

Yes you are correct - onTouch() is used by users of the View to get touch events while onTouchEvent() is used by derived classes of the View to get touch events.

link|improve this answer
feedback

The onTouchEvent() actually will get called by the Activity if none of the views consume the touch event.

And as you say, the onTouch() can be used in any class, as long as:

  1. That class (i.e. Foo) implements the OnTouchListener interface and
  2. That class is a registered listener using view.setOnTouchListener(foo);
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.