Search code examples
javaandroidandroid-custom-view

How to adjust child view height after resizing its parent ViewGroup?


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?


Solution

  • 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?