Which of the following classes should be extended to create a custom view?
Which of the following classes should be extended to create a custom view?
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.
A. View