0 votes
in JQuery by
What’s the difference between onCreate() and onStart() in Android?

1 Answer

0 votes
by
  • The onCreate() method is called once during the Activity lifecycle, either when the application starts, or when the Activity has been destroyed and then recreated, for example during a configuration change.
  • The onStart() method is called whenever the Activity becomes visible to the user, typically after onCreate() or onRestart().

Related questions

0 votes
asked Aug 30, 2023 in Android Library by SakshiSharma
0 votes
asked Sep 21, 2020 in JQuery by JackTerrance
...