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

Which of the following classes should be extended to create a custom view?

    Correct Answer: A

    To create a custom view in Android, you should extend the View class. This is because all the view classes in the Android framework extend from View, making it the base class for all custom views. Extending View allows you to take advantage of its underlying structure and functionality.

Discussion
MmadiOption: A

A. View