Which of the following is a Java call-back method invoked when a view is clicked?
Which of the following is a Java call-back method invoked when a view is clicked?
The correct Java call-back method invoked when a view is clicked is OnClickListener. This interface in Android is specifically designed to handle click events, implementing the onClick(View v) method to define the actions to be executed when the user clicks a view.
D. OnClickListener