Disabling multitouch in android

10,067

Solution 1

you can use android:splitMotionEvents or android:windowEnableSplitTouch

Solution 2

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

android:splitMotionEvents="false"
Share:
10,067
Rushikesh Talokar
Author by

Rushikesh Talokar

Experienced Software Developer with 10+ years of experience in application software development. Hands on experience of designing and development using C++, Python & Java on Linux/Unix platforms.

Updated on June 28, 2022

Comments

  • Rushikesh Talokar
    Rushikesh Talokar almost 2 years

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

  • ralphgabb
    ralphgabb over 9 years
    put android:splitMotionEvents on LinearLayout or any Parent layout your view (Button) is.