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?
|
feedback
|
|
Yes you are correct - | |||
|
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:
| |||
|
feedback
|