PopupWindow.IsLaidOutInScreen Property

Definition

Indicates whether the popup window will be forced into using absolute screen coordinates for positioning. -or- Allows the popup window to force the flag WindowManager.LayoutParams#FLAG_LAYOUT_IN_SCREEN, overriding default behavior.

public virtual bool IsLaidOutInScreen { [Android.Runtime.Register("isLaidOutInScreen", "()Z", "GetIsLaidOutInScreenHandler", ApiSince=29)] get; [Android.Runtime.Register("setIsLaidOutInScreen", "(Z)V", "GetSetIsLaidOutInScreen_ZHandler", ApiSince=29)] set; }
[<get: Android.Runtime.Register("isLaidOutInScreen", "()Z", "GetIsLaidOutInScreenHandler", ApiSince=29)>]
[<set: Android.Runtime.Register("setIsLaidOutInScreen", "(Z)V", "GetSetIsLaidOutInScreen_ZHandler", ApiSince=29)>]
member this.IsLaidOutInScreen : bool with get, set

Property Value

true if the window will always be positioned in screen coordinates.

Attributes

Remarks

Property getter documentation:

Indicates whether the popup window will be forced into using absolute screen coordinates for positioning.

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

Property setter documentation:

Allows the popup window to force the flag WindowManager.LayoutParams#FLAG_LAYOUT_IN_SCREEN, overriding default behavior. This will cause the popup to be positioned in absolute screen coordinates.

Java documentation for android.widget.PopupWindow.setIsLaidOutInScreen(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