2

How to disable multi touch in android either by manifest or programatically?

Rushikesh Talokar
  • 1,515
  • 4
  • 16
  • 32

2 Answers2

7

you can use android:splitMotionEvents or android:windowEnableSplitTouch

Alan Deep
  • 2,037
  • 1
  • 14
  • 22
2

To prevent this you should turn off splitMotionEvents or windowEnableSplitTouch attribute inside ViewGroup were buttons are located.

android:splitMotionEvents="false"
Dmytro Danylyk
  • 19,684
  • 11
  • 62
  • 68