- savedInstanceState
- the data most recently supplied in Activity.OnSaveInstanceState(Android.OS.Bundle).
- persistentState
- the data most recently supplied in Activity.OnSaveInstanceState(Android.OS.Bundle).
This is the same as Activity.OnRestoreInstanceState(Android.OS.Bundle) but is called for activities created with the attribute NoType:android/R$attr;Href=../../../reference/android/R.attr.html#persistableMode set to persistAcrossReboots. The Android.OS.PersistableBundle passed came from the restored PersistableBundle first saved in Activity.OnSaveInstanceState(Android.OS.Bundle, Android.OS.PersistableBundle).
This method is called between Activity.OnStart and Activity.OnPostCreate(Android.OS.Bundle).
If this method is called Activity.OnRestoreInstanceState(Android.OS.Bundle) will not be called.