0 votes
in JQuery by
What is activity lifecycle in Android?

1 Answer

0 votes
by

As a user navigates through, out of, and back to your app, the Activity instances in your app transition through different states in their lifecycle.

To navigate transitions between stages of the activity lifecycle, the Activity class provides a core set of six callbacks: onCreate()onStart()onResume()onPause()onStop(), and onDestroy(). The system invokes each of these callbacks as an activity enters a new state.

Related questions

+1 vote
asked Aug 3, 2020 in JQuery by Hodge
+1 vote
0 votes
asked Jun 23, 2020 in JQuery by AdilsonLima
...