Activity.OnStateNotSaved Method

Definition

Called when an #onResume is coming up, prior to other pre-resume callbacks such as #onNewIntent and #onActivityResult.

[Android.Runtime.Register("onStateNotSaved", "()V", "GetOnStateNotSavedHandler", ApiSince=23)]
public virtual void OnStateNotSaved ();
[<Android.Runtime.Register("onStateNotSaved", "()V", "GetOnStateNotSavedHandler", ApiSince=23)>]
abstract member OnStateNotSaved : unit -> unit
override this.OnStateNotSaved : unit -> unit
Attributes

Remarks

Called when an #onResume is coming up, prior to other pre-resume callbacks such as #onNewIntent and #onActivityResult. This is primarily intended to give the activity a hint that its state is no longer saved -- it will generally be called after #onSaveInstanceState and prior to the activity being resumed/started again.

This member is deprecated. starting with android.os.Build.VERSION_CODES#P onSaveInstanceState is called after #onStop, so this hint isn't accurate anymore: you should consider your state not saved in between onStart and onStop callbacks inclusively.

Java documentation for android.app.Activity.onStateNotSaved().

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