FragmentController.DispatchMultiWindowModeChanged 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
| Name | Description |
|---|---|
| DispatchMultiWindowModeChanged(Boolean) |
This method was deprecated in API level 26. |
| DispatchMultiWindowModeChanged(Boolean, Configuration) |
Lets all Fragments managed by the controller's FragmentManager know the multi-window mode of the activity changed. |
DispatchMultiWindowModeChanged(Boolean)
This method was deprecated in API level 26.
[Android.Runtime.Register("dispatchMultiWindowModeChanged", "(Z)V", "GetDispatchMultiWindowModeChanged_ZHandler", ApiSince=24)]
public virtual void DispatchMultiWindowModeChanged(bool isInMultiWindowMode);
[<Android.Runtime.Register("dispatchMultiWindowModeChanged", "(Z)V", "GetDispatchMultiWindowModeChanged_ZHandler", ApiSince=24)>]
abstract member DispatchMultiWindowModeChanged : bool -> unit
override this.DispatchMultiWindowModeChanged : bool -> unit
Parameters
- isInMultiWindowMode
- Boolean
boolean
- Attributes
Remarks
This method was deprecated in API level 26. use dispatchMultiWindowModeChanged(boolean,Configuration)
Lets all Fragments managed by the controller's FragmentManager know the multi-window mode of the activity changed. Call when the multi-window mode of the activity changed.
See also:
Android reference for android.app.FragmentController.dispatchMultiWindowModeChanged.
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
DispatchMultiWindowModeChanged(Boolean, Configuration)
Lets all Fragments managed by the controller's FragmentManager know the multi-window mode of the activity changed.
[Android.Runtime.Register("dispatchMultiWindowModeChanged", "(ZLandroid/content/res/Configuration;)V", "GetDispatchMultiWindowModeChanged_ZLandroid_content_res_Configuration_Handler", ApiSince=26)]
public virtual void DispatchMultiWindowModeChanged(bool isInMultiWindowMode, Android.Content.Res.Configuration? newConfig);
[<Android.Runtime.Register("dispatchMultiWindowModeChanged", "(ZLandroid/content/res/Configuration;)V", "GetDispatchMultiWindowModeChanged_ZLandroid_content_res_Configuration_Handler", ApiSince=26)>]
abstract member DispatchMultiWindowModeChanged : bool * Android.Content.Res.Configuration -> unit
override this.DispatchMultiWindowModeChanged : bool * Android.Content.Res.Configuration -> unit
Parameters
- isInMultiWindowMode
- Boolean
boolean
- newConfig
- Configuration
Configuration
- Attributes
Remarks
Lets all Fragments managed by the controller's FragmentManager know the multi-window mode of the activity changed. Call when the multi-window mode of the activity changed.
See also:
Android reference for android.app.FragmentController.dispatchMultiWindowModeChanged.
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.