- savedInstanceState
- If the activity is being re-initialized after previously being shut down then this Bundle contains the data it most recently supplied in Activity.OnSaveInstanceState(Android.OS.Bundle). Note: Otherwise it is null.
Called when activity start-up is complete (after Activity.OnStart and Activity.OnRestoreInstanceState(Android.OS.Bundle) have been called). Applications will generally not implement this method; it is intended for system classes to do final initialization after application code has run.
Derived classes must call through to the super class's implementation of this method. If they do not, an exception will be thrown.