xmuSistone / CardSlidePanel

enable users to slide card to the left or right smoothly and continuously
2.39k stars 516 forks source link

怎样让卡片的底部view不接受手势事件 #97

Closed morefreeliang closed 4 years ago

morefreeliang commented 4 years ago

我的需求是在卡片底部有一个横向RecyclerView,但目前recyclerview不能横向滑动了,

所以请问下,怎样限制手势滑动的范围,可以让我的recyclerview可以横向滑动,

谁能指点下,谢谢了

xmuSistone commented 4 years ago

@zhangshuliang 你可以写一个自定义ViewGroup,在ActionDown的时候禁止parent拦截touch。getParent.requestDisallowInterceptTouchEvent(true)

morefreeliang commented 4 years ago

多谢指教,谢谢