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

Which of these is NOT recommended in the Android Developer's Guide as a method of creating an individual View?

    Correct Answer: C

    Creating an individual View by copying the source code of an already existing View class such as Button or TextView is not recommended in the Android Developer's Guide. Instead, developers are encouraged to create custom views by extending the android.view.View class or by extending existing View classes like Button or TextView. Additionally, combining multiple Views to create complex layouts is also a recommended practice.

Discussion
MmadiOption: C

C. Create by copying the source of an already existing View class such as Button or TextView