Exam AND-401 All QuestionsBrowse all questions from this exam
Question 38

Which of the following add a click listener to items in a listView?

    Correct Answer: B

    AdapterView.OnItemClickListener is the correct method to add a click listener to items in a ListView. This interface provides a callback method, onItemClick, that is invoked when an item in the AdapterView is clicked, making it specifically designed for this purpose.

Discussion
MmadiOption: B

B. onItemClickListener.