Which of these is NOT recommended in the Android Developer's Guide as a method of creating an individual View?
Which of these is NOT recommended in the Android Developer's Guide as a method of creating an individual View?
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.
C. Create by copying the source of an already existing View class such as Button or TextView