Call onResume in Android Activity

Is it normal in an action procedure to force an onResume event by calling this.OnResume ()? Or do I need to execute another procedure that is called by OnResume as well as the first element?

+5
source share
2 answers

Implement another procedure that is called when overriding onResume(). The latter is not intended to be called by you, it is a convenience method that orders or processes an activity when its state changes to resume. Very similar to onCreate()before onDestroy().

+6
source

@SK9, , super.onResume(), onResume, , ( ..).

0

All Articles