What is the difference between Views and widgets?

前端 未结 5 688
深忆病人
深忆病人 2021-01-05 22:38

If I am not wrong, View is the superclass for all widgets, but how do I differentiate between a View and a widget? For example, a button or a text box, what sho

5条回答
  •  借酒劲吻你
    2021-01-05 23:15

    Think of view as something like a huge container that contains anything which occupies a rectangular area on screen and handles drawing and event handling.

    While widgets are a set of Pre-built views that can be used to construct a user interface ,e.g buttons,Checkbox,EditText. Widgets are a subset of views.

提交回复
热议问题