问题
How to disable multi touch in android either by manifest or programatically?
回答1:
you can use android:splitMotionEvents
or android:windowEnableSplitTouch
回答2:
To prevent this you should turn off splitMotionEvents or windowEnableSplitTouch attribute inside ViewGroup were buttons are located.
android:splitMotionEvents="false"
来源:https://stackoverflow.com/questions/12111862/disabling-multitouch-in-android