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_MOVE
event. If the mouse move into view2, then let view2 handle theACTION_MOVE
event.
How to do it?
PS: android version is 2.x