Matt Gould
Matt Gould

Reputation: 83

Adding Views to an Android Viewgroup Programmatically

This seems to be a common question yet documentation is very hard to find. I'm looking for examples that show me how to create my own view group (preferably by extending an already existing one) and then add views programmaticly.

Thanks.

Upvotes: 6

Views: 7427

Answers (1)

Blackbelt
Blackbelt

Reputation: 157437

ViewGroup

ViewGroup is abstract, and its onLayout is abstract too. So you need to provide an implementation for onLayout where you do assign a position at every child (View) of the viewgroup.

Upvotes: 1

Related Questions