From c2299de4ecd91b72aff78ace029db4542e2dcdd1 Mon Sep 17 00:00:00 2001
From: Scott Main
However, the following properties allow you to disable split touch events for -specific view groups, certain activities, or the entire application.
+However, the following properties allow you to disable split touch events across views inside +specific view groups and across windows.
<LinearLayout android:splitMotionEvents="false" ... >
...
</LinearLayout>
+This way, child views in the linear layout cannot split touch events—only one view can +receive touch events at a time.
<style name="NoSplitMotionEvents" parent="android:Theme.Holo">
@@ -744,7 +746,8 @@ href="{@docRoot}guide/topics/manifest/activity-element.html">{@code <activity
href="{@docRoot}guide/topics/manifest/application-element.html">{@code <application>},
only touch events within the current activity window are accepted. For example, by disabling split
touch events across windows, the system bar cannot receive touch events at the same time as the
-activity.
+activity. This does not affect whether views inside the activity can split touch
+events—by default, the activity can still split touch events across views.
For more information about creating a theme, read Applying Styles and Themes.