Computer Science, asked by rjrushi1313, 6 months ago

Q.State the callback (event) in Activity life cycle which is called when user starts interacting with the
application.
*
1)onResume
2)onStart().
3)onCreate()
4)bnRestart()​

Answers

Answered by shreyatiwari1jan2009
1

Answer:

As onCreate() of an Activity is called only once, this is the point where most initialization should go: calling setContentView(int) to inflate the activity's UI, using findViewById to programmatically interact with widgets in the UI, calling managedQuery(android. net.

When the activity enters the Started state, the system invokes this callback. The onStart() call makes the activity visible to the user, as the app prepares for the activity to enter the foreground and become interactive. For example, this method is where the app initializes the code that maintains the UI.

Answered by rishabh051
0

Answer:

3) I think this is write answer

Similar questions