what is the different between the start() and resume() method in the activity cycle in android ?? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

what is the different between the start() and resume() method in the activity cycle in android ??

10th Apr 2018, 7:38 AM
ABD ALGHANI ALDAAS
ABD ALGHANI ALDAAS - avatar
2 Answers
+ 4
onStart() method is called just after it's creation. 
10th Apr 2018, 3:11 PM
Muhammad Adeel
Muhammad Adeel - avatar
+ 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.
10th Apr 2018, 11:04 AM
Jonas Heinzmann
Jonas Heinzmann - avatar