PopupWindow.IsLaidOutInScreen Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.