ontouch()函数是OnTouchListener的一个抽象函数,对他的解释如下:Called when a touch event is dispatched to a view. This allows listeners to get a chance to respond before the target view.是说当一个touch到view时,这个函数会在目标View处理之前来先处理touch,是吗?View本身有一个OnTouchEvent函数,是处理他的touch的,也就是ontouch()会在onTouchEvent()之前响应,ontouch()处理完成后,ontouchEvent()再响应,是这样吗?那这样,两者要一个是不是就可以了?