Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我返回true或false进入onTouch()有关系OnTouchListener吗?true我看不出返回或false在此示例中有任何区别: Android Swipe on List
true
false
onTouch()
OnTouchListener
返回值确定您是否使用了触摸事件。
换句话说true,意味着此触摸事件对您来说很有趣,并且此触摸事件的所有后续调用ACTION_MOVE都ACTION_UP将发送给您。
ACTION_MOVE
ACTION_UP
如果您返回false,则触摸事件将被传递到View视图层次结构中的下一个更上层,并且您将不会收到任何后续调用。触摸事件将继续向上传递到视图层次结构,直到有人使用它。
View
如果您还有其他问题,请随时提问!