What is View in Android App Development (1)

  •  The basic building block for the user interface is a View
  • View is created from the View class and occupies a rectangular area on the screen.
  • View is responsible for drawing and event handling.
  • View is the base class for widgets, which are used to create interface UI components like buttons, text fields, etc.

Comments