Question & Answer

In an Android application, which of the following callback methods is called when activity interaction with the user is started?

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

1 Answer

Verified archive
Quizzma TeamJuly 7, 2025

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.