onTouchevent() vs onTouch()

2019-01-13 03:55发布

After many experiments with onTouchEvent and onTouch, I found that onTouch works everywhere you want (whether it is in activity or view) as long as you have declared the interface and put the Listener right! On the other hand, onTouchEvent only works inside a View! Is my assumption correct? Is this the real difference?

7条回答
Luminary・发光体
2楼-- · 2019-01-13 04:30

I found another difference. onTouchEvent does not seem to get the deprecated events MotionEvent.ACTION_POINTER_2_DOWN and MotionEvent.ACTION_POINTER_2_UP.

Of course they are quite old and we shouldn't be using them.

This is in Android 5.1 api 22.

查看更多
姐就是有狂的资本
3楼-- · 2019-01-13 04:35

onTouchEvent is a method implemented by the View, Activity and other base classes like LinearLayout, etc..

public boolean onTouchEvent(MotionEvent event) {
    throw new RuntimeException("Stub!");
}

you can override this method by any derived classes

whereas

onTouch() is defined by the interface OnTouchListener{}

public interface OnTouchListener { boolean onTouch(View var1, MotionEvent var2); }

so you only need to implement one when setting this interface to a class

查看更多
Luminary・发光体
4楼-- · 2019-01-13 04:46

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.

查看更多
Melony?
5楼-- · 2019-01-13 04:46

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);
查看更多
聊天终结者
6楼-- · 2019-01-13 04:52

I have used ontouch() and ontouchevent(), as ontouch is used when i want to work on elements of single view, like buttons , imagebuttons etc on single view (say Linearlayout ), whereas when i want to work on areas rest of the my elements(e.g button) i use ontouchevent.

查看更多
Bombasti
7楼-- · 2019-01-13 04:52

While creating a custom View ,you can

@override onTouchEvent(MotionEvent e){}

whereas you can add onTouch to any View,ViewGroup or Activity.

onTouch(View v, MotionEvent e) { //you can filter any View's touch }

onTouch is generic and onTouchEvent is specific to View. And you can also filter your view using onTouch.

查看更多
登录 后发表回答