Difference between View and ViewGroup in Android

后端 未结 11 1491
暖寄归人
暖寄归人 2020-12-02 08:11

What is the difference between a View and a ViewGroup in Android programming?

11条回答
  •  遥遥无期
    2020-12-02 08:53

    View is the SuperClass of All component like TextView, EditText, ListView, etc.. while ViewGroup is Collection of Views(TextView, EditText, ListView, etc..), somewhat like container.

提交回复
热议问题