FragmentManager.FragmentLifecycleCallbacks.OnFragmentPreCreated 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.
Called right before the fragment's Fragment#onCreate(Bundle)
method is called.
[Android.Runtime.Register("onFragmentPreCreated", "(Landroid/app/FragmentManager;Landroid/app/Fragment;Landroid/os/Bundle;)V", "GetOnFragmentPreCreated_Landroid_app_FragmentManager_Landroid_app_Fragment_Landroid_os_Bundle_Handler", ApiSince=26)]
public virtual void OnFragmentPreCreated (Android.App.FragmentManager fm, Android.App.Fragment f, Android.OS.Bundle savedInstanceState);
[<Android.Runtime.Register("onFragmentPreCreated", "(Landroid/app/FragmentManager;Landroid/app/Fragment;Landroid/os/Bundle;)V", "GetOnFragmentPreCreated_Landroid_app_FragmentManager_Landroid_app_Fragment_Landroid_os_Bundle_Handler", ApiSince=26)>]
abstract member OnFragmentPreCreated : Android.App.FragmentManager * Android.App.Fragment * Android.OS.Bundle -> unit
override this.OnFragmentPreCreated : Android.App.FragmentManager * Android.App.Fragment * Android.OS.Bundle -> unit
Parameters
Host FragmentManager
- f
- Fragment
Fragment changing state
- savedInstanceState
- Bundle
Saved instance bundle from a previous instance
- Attributes
Remarks
Called right before the fragment's Fragment#onCreate(Bundle)
method is called. This is a good time to inject any required dependencies or perform other configuration for the fragment.
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.