Set a Label to bottom of another label?

Inman

Well-Known Member
Licensed User
Longtime User
After assinging text to label1, you should use StringUtils.MeasureMultilineTextHeight to find the minimum height needed for the complete text to fit within the label

Basic4android - StringUtils

Once you change the height of label1, modify label2 such that label2's top is > or = label1.Top + label1.Height
 
Upvote 0
Top