I have two views, the bigger one is on the bottom, and the smaller one is on the top. Show on following picture:

Now I press mouse on view1 (outside view2), then move to view2. I found even if the mouse is inside view2 during the movement, view2 won’t get the ACTION_MOVE event. Only view1 can get it.
What I want:
When the mouse is inside view1 and outside view2, let view1 handle the
ACTION_MOVEevent. If the mouse move into view2, then let view2 handle theACTION_MOVEevent.
How to do it?
PS: android version is 2.x
It is not possible,but you can do some things else:
Get coordinates of mouse and view2,if mouse is in bounds of view2,try what you want.Or if you want,you can call
view2.onTouchmethod directly,create a touchlistener class for V2,for exampleV2TouchListenerthen: