What is the difference between a View and a ViewGroup in Android programming?
View
ViewGroup
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.
TextView, EditText, ListView,
(TextView, EditText, ListView, etc..)