Yes I also faced this issue once
and I found solution that android:splitMotionEvents="false"
this will work only to direct children of a layout.
Example:
Like if you create two layout A and B and
In A you have two buttons b1,b2
In B you have two buttons b3,b4
both A and B are in Parent Layout
So first you have to clear that these buttons are not direct children of Parent Layout
In Parent Layout only have two children A and B
Than if you add android:splitMotionEvents="false" to Parent Layout
then multi touch will not work on Layout A and Layout B but it will work on every button b1,b2,b3,b4 because these are not direct children of Parent Layout
So , If you want that multi touch will not work on these buttons also
Than you have to add android:splitMotionEvents="false" this to every layout separately
There are some cases :
1).If you only add android:splitMotionEvents="false" on Layout A
than you can not touch button b1 and button b2 at same time
but you can touch button b1 or b2 and button b3 or b4 at same time.
2). just opposite of case 1.
3). But if you add android:splitMotionEvents="false" on both layouts than you can not touch any two buttons on your screen at same time.
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:splitMotionEvents="false" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:splitMotionEvents="false" >
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="b1" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="b2" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:splitMotionEvents="false" >
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="b3" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="b4" />
</LinearLayout>
I think it might helpful for you.