I need to disable gesture back on along height of recyclerview. I should gesture back other part of screen.
I’m currently developing an Android application and I want to disable the gesture swipe back (the edge swipe to go back) functionality, but only for a specific part of the screen while keeping it active for the rest of the screen.
I’ve tried using onTouchEvent
to intercept touch events, but I’m unsure how to implement this for a specific area.
1