I have two views that are overlayed using a framelayout. What I want is to consume in both views the touch events. I have managed to consume the action_down but once the motion even is dispatched to the view below the one on top cannot track any motion any more.

Any suggestion?

Thanks in advance!!

link|improve this question

77% accept rate
feedback

1 Answer

up vote 0 down vote accepted

If you set your sdk target to version 11 or higher, by default multiple views will be able to accept touch events.

This is further explained here: http://developer.android.com/sdk/android-3.0.html

and scroll down to "Split touch events".

Previously, only a single view could accept touch events at one time. Android 3.0 adds support for splitting touch events across views and even windows, so different views can accept simultaneous touch events. Split touch events is enabled by default when an application targets Android 3.0. That is, when the application has set either the android:minSdkVersion or android:targetSdkVersion attribute's value to "11".

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.