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.
我有一个ListView. 在 上ListView,我设置了两个事件:
ListView
setOnTouchListener
setOnItemClickListener
在我的代码中,setOnTouchListener有效但setOnItemClickListener无效。当我删除setOnTouchListener时,setOnItemClickListener工作正常。
有没有办法让他们两个同时工作?
Gunar 告诉您解决方案,如果您在侦听器上返回 false,Android 将理解触摸将继续传播,因此其他侦听器将被解雇。
但也许您不需要两个侦听器来执行几乎相同的操作。