How do I detect the touch event if the user touches on view A and drags to bottom over the view B. I want to detect the touch event in View B.
I added touch listener in view B but doesn’t receive events if the user initially touched A and dragged over the B.

You can use the code bellow to achive your request:
Method to test view bounds (used in code beloow)
Testing with two
TextViewSetup viewA
The empty
OnClickListeneris required to keepOnTouchListeneractive untilACTION_UPSetup viewB
This is only required if you also want to press on viewB and drag to viewA
Regards.