Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
What’s the difference between onCreate() and onStart() in Android?
Home
JQuery
What’s the difference between onCreate() and onStart() in Android?
0
votes
asked
Jun 23, 2020
in
JQuery
by
AdilsonLima
What’s the difference between onCreate() and onStart() in Android?
#android
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 23, 2020
by
AdilsonLima
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().
...