Which of the following is not an Activity lifecycle call-back method?
Which of the following is not an Activity lifecycle call-back method?
The Activity lifecycle call-back methods are predefined methods in the Android Activity class that are called at various stages of an activity's lifecycle. These include onStart, onCreate, and onPause. The onBackPressed method, however, is not a lifecycle callback method. It is an event handling method that is called when the back button is pressed. Therefore, onBackPressed is not part of the activity lifecycle call-back methods.
D. onBackPressed