horizontal scroll in the top most position
Opened this issue · 0 comments
osemen-remit commented
Hi,
I have an issue with horizontal scrolling inside item when RecyclerView is in the top most position. It starts PullToRefresh gesture when user moves finger not horizontally but slightly down. What i figured out is that it is mostly caught by SwipeRefreshLayout
which doe not respect requestDisallowInterceptTouchEvent(boolean b)` method.
@Override
public void requestDisallowInterceptTouchEvent(boolean b) {
// Nope.
}
Is it possible to use custom one ? For instance extended from regular SwipeRefreshLayout
with the only overridden method that calls ViewGroup
's implementation ?
Thanks.