You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi!
I've been using your library for a recycler view with a map header. Is there an option for the reclerview to scroll only when touching any element but the header? in order to make the map touchable?
Thanks
The text was updated successfully, but these errors were encountered:
I have not tested this solution but I suggest you wrap your mapview around another custom ViewGroup (like a RelativeLayout) which you must extend and override onTouch method.
On that onTouch method you should call:
recycler.requestDisallowInterceptTouchEvent(true); when the action is ACTION_DOWN
and call
recycler.requestDisallowInterceptTouchEvent(false); when the action is ACTION_UP or ACTION_CANCEL
Hi!
I've been using your library for a recycler view with a map header. Is there an option for the reclerview to scroll only when touching any element but the header? in order to make the map touchable?
Thanks
The text was updated successfully, but these errors were encountered: