In an Android application, which of the following callback methods is called when activity interaction with the user is started? A. onStart
B. onStop
C. onResume
D. onDestroy
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The correct answer is C. onResume.
Explanation: The `onResume` callback method is called when an activity comes into the foreground and starts interacting with the user. This method is part of the activity lifecycle and indicates that the activity is now active and able to receive user input.