Android touch events with multiple views

How can I use different views that accept different touch events at the same time?

+3
source share
1 answer

You need to override onTouchEvent for the views, and then make sure you return false so the touches can fail. The touches will begin at the β€œtop” and fail every view in your layout until they reach the bottom inner view.

0
source

All Articles