What is the parent class of all Activity widgets?
What is the parent class of all Activity widgets?
The parent class of all Activity widgets is ViewGroup. ViewGroup is a special view that can contain other views (or other view groups) and define the layout properties for them. Activities can have complex UI arrangements that typically involve multiple views arranged within ViewGroup containers.
C. View