Multiple choice technology platforms and products

Android uses EditText widget, which is a subclass of ________ used for labels. Choose the most appropriate option.

  1. View

  2. ViewField

  3. TextView

  4. None of above

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

EditText extends TextView, which is the base class for displaying text in Android. TextView is used for labels and non-editable text display, while EditText adds editing capabilities. View is the parent of TextView (too generic), and ViewField is not a valid Android class.