diff --git a/docs/html/sdk/android-3.0.jd b/docs/html/sdk/android-3.0.jd index 4be98e634aa16..1f1f6d3c90a7c 100644 --- a/docs/html/sdk/android-3.0.jd +++ b/docs/html/sdk/android-3.0.jd @@ -717,21 +717,23 @@ href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#min">{@code android: or {@code android:targetSdkVersion} attribute's value to {@code "11"}.
-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.