AND-401 Exam QuestionsBrowse all questions from this exam

AND-401 Exam - Question 74


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

Show Answer
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

1 comment
Sign in to comment
MmadiOption: C
Dec 31, 2022

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