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.
如何避免我的 SlidingPaneLayout 将触摸事件委托给后面的视图?
在我的情况下,如果像文本视图这样的不可触摸区域位于按钮上方并且后面的视图不可见并且我触摸文本视图,则按钮将获得触摸事件......
我知道已经很晚了,但是对于寻找相同问题的其他人来说:
我用
android:clickable="true"
在不可触摸的视图的 xml 中。例如,如果您有一个对应于详细信息窗格的 FrameLayout,则将其可点击值设置为 true。然后它不会将触摸事件传递给后面的视图(主窗格)。