我有一个BottomSheet,其中包含一些不可点击的内容。该BottomSheet在RecyclerView上滑动。
问题是当我点击BottomSheet时,它后面的RecyclerView项将触发(当然不应该发生)。在BottomSheet上滚动时,列表也会滚动。
我试图在BottomSheet的容器上设置android:clickable=false
无效。
有明显的预防方法吗?
答案 0 :(得分:1)
您需要在android:clickable=true
的容器上设置BottomSheet
,而不是android:clickable=false
。