Window.SetUiOptions Method
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.
Overloads
SetUiOptions(UiOptions) |
Set extra options that will influence the UI for this window. |
SetUiOptions(UiOptions, UiOptions) |
Set extra options that will influence the UI for this window. |
SetUiOptions(UiOptions)
Set extra options that will influence the UI for this window.
[Android.Runtime.Register("setUiOptions", "(I)V", "GetSetUiOptions_IHandler")]
public virtual void SetUiOptions (Android.Content.PM.UiOptions uiOptions);
[<Android.Runtime.Register("setUiOptions", "(I)V", "GetSetUiOptions_IHandler")>]
abstract member SetUiOptions : Android.Content.PM.UiOptions -> unit
override this.SetUiOptions : Android.Content.PM.UiOptions -> unit
Parameters
- uiOptions
- UiOptions
Flags specifying extra options for this window.
- Attributes
Remarks
Set extra options that will influence the UI for this window.
Java documentation for android.view.Window.setUiOptions(int)
.
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
SetUiOptions(UiOptions, UiOptions)
Set extra options that will influence the UI for this window.
[Android.Runtime.Register("setUiOptions", "(II)V", "GetSetUiOptions_IIHandler")]
public virtual void SetUiOptions (Android.Content.PM.UiOptions uiOptions, Android.Content.PM.UiOptions mask);
[<Android.Runtime.Register("setUiOptions", "(II)V", "GetSetUiOptions_IIHandler")>]
abstract member SetUiOptions : Android.Content.PM.UiOptions * Android.Content.PM.UiOptions -> unit
override this.SetUiOptions : Android.Content.PM.UiOptions * Android.Content.PM.UiOptions -> unit
Parameters
- uiOptions
- UiOptions
Flags specifying extra options for this window.
- mask
- UiOptions
Flags specifying which options should be modified. Others will remain unchanged.
- Attributes
Remarks
Set extra options that will influence the UI for this window. Only the bits filtered by mask will be modified.
Java documentation for android.view.Window.setUiOptions(int, int)
.
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.