- savedInstanceState
- If the fragment is being re-created from a previous saved state, this is the state.
Called to do initial creation of a fragment. This is called after Fragment.OnAttach(Activity) and before Fragment.OnCreateView(Android.Views.LayoutInflater, Android.Views.ViewGroup, Android.Views.ViewGroup).
Note that this can be called while the fragment's activity is still in the process of being created. As such, you can not rely on things like the activity's content view hierarchy being initialized at this point. If you want to do work once the activity itself is created, see Fragment.OnActivityCreated(Android.OS.Bundle).