+ 3
what is the different between the start() and resume() method in the activity cycle in android ??
2 Réponses
+ 4
onStart() method is called just after it's creation.
+ 2
resume()
This method resumes a thread, which was suspended using suspend() method.
start()
This method begin to execute a thread. The result is that two threads are running concurrently:
I hope it is correctly.