Language

Activity.OnPostResume Method

Definition

Called when activity resume is complete (after onResume() has been called).

[Android.Runtime.Register("onPostResume", "()V", "GetOnPostResumeHandler")]
protected virtual void OnPostResume();
[<Android.Runtime.Register("onPostResume", "()V", "GetOnPostResumeHandler")>]
abstract member OnPostResume : unit -> unit
override this.OnPostResume : unit -> unit
Attributes

Remarks

Called when activity resume is complete (after onResume() has been called). Applications will generally not implement this method; it is intended for system classes to do final setup after application resume 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.

See also:

Android reference for android.app.Activity.onPostResume.

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