I have custom view which extends RelativeLayout and has child element with height set to "fill_parent".
The problem is that adjusting parents height doesn’t affect its child height.
How can I force child to fit its parent?
I have custom view which extends RelativeLayout and has child element with height set
Share
You can programatically change height\width with LayoutParams, check this:
How to create a RelativeLayout programmatically with two buttons one on top of the other?