Split touch events

来源:互联网 发布:淘宝帐号怎么注销 编辑:程序博客网 时间:2024/05/23 01:25
Split touch events

Previously, only a single view could accept touch events at onetime. Android 3.0 adds support for splitting touch events acrossviews and even windows, so different views can accept simultaneoustouch events.

Split touch events is enabled by default when an application targets Android 3.0. That is, when the application has set eithertheandroid:minSdkVersionor android:targetSdkVersion attribute's value to"11".

However, the following properties allow you to disable splittouch events across views inside specific view groups and acrosswindows.

  • The android:splitMotionEventsattribute for view groups allows you to disable split touch eventsthat occur between child views in a layout. For example:
    <LinearLayout android:splitMotionEvents="false" ... >      ...  </LinearLayout>

    This way, child views in the linear layout cannot split touchevents—only one view can receive touch events at a time.

  • The android:windowEnableSplitTouchstyle property allows you to disable split touch events acrosswindows, by applying it to a theme for the activity or entireapplication. For example:
    <style name="NoSplitMotionEvents" parent="android:Theme.Holo">      <item name="android:windowEnableSplitTouch">false</item>      ...  </style>

    When this theme is applied to an <activity>or <application>,only touch events within the current activity window are accepted.For example, by disabling split touch events across windows, thesystem bar cannot receive touch events at the same time as theactivity. This doesnot affect whether views inside theactivity can split touch events—by default, the activity can stillsplit touch events across views.

    For more information about creating a theme, read Applying Styles andThemes.


0 0
原创粉丝点击