PopupWindow.SplitTouchEnabled Property

Definition

Indicates whether the popup window supports splitting touches. -or- Allows the popup window to split touches across other windows that also support split touch.

public virtual bool SplitTouchEnabled { [Android.Runtime.Register("isSplitTouchEnabled", "()Z", "GetIsSplitTouchEnabledHandler")] get; [Android.Runtime.Register("setSplitTouchEnabled", "(Z)V", "GetSetSplitTouchEnabled_ZHandler")] set; }
[<get: Android.Runtime.Register("isSplitTouchEnabled", "()Z", "GetIsSplitTouchEnabledHandler")>]
[<set: Android.Runtime.Register("setSplitTouchEnabled", "(Z)V", "GetSetSplitTouchEnabled_ZHandler")>]
member this.SplitTouchEnabled : bool with get, set

Property Value

true if the touch splitting is enabled, false otherwise

Attributes

Remarks

Property getter documentation:

Indicates whether the popup window supports splitting touches.

Java documentation for android.widget.PopupWindow.isSplitTouchEnabled().

Property setter documentation:

Allows the popup window to split touches across other windows that also support split touch. When this flag is false, the first pointer that goes down determines the window to which all subsequent touches go until all pointers go up. When this flag is true, each pointer (not necessarily the first) that goes down determines the window to which all subsequent touches of that pointer will go until that pointer goes up thereby enabling touches with multiple pointers to be split across multiple windows.

Java documentation for android.widget.PopupWindow.setSplitTouchEnabled(boolean).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

See also