I'd like to get the height of a linearlayout. I found more information in this answer

View.getWidth()/View.getHeight() won't give you a meaningful answer until the view has been measured.

How will I know that view has been measured? Is there some event for it?

UPD:

Solution for me is to get layout's height in overriden onWindowFocusChanged()

link|improve this question

75% accept rate
1  
thank you for correcting my english :) – Mur Votema Nov 1 '10 at 20:43
feedback

1 Answer

up vote 1 down vote accepted

There currently aren't any events that will fire that specifically tell you the size of a view has changed. As suggested in the threads you pointed to, you can check for when the view has focus, and assume that once it has focus, it has width/height greater than 0.

Another way: There's an onSizeChanged method which you can override in a subclass and use to do something when non-zero values come in. Obviously, be sure to call super.onSizeChanged(...).

link|improve this answer
"assume that once it has focus, it has width/height greater than 0" .. may be it's not so intelligent answer, but should I do it within a while loop?! ... i try tomorrow your second suggestion ... android thing are too complicated – Mur Votema Nov 1 '10 at 20:58
Thank you for your answer :) it was enough for me to get height in onWindowFocusChanged() :) – Mur Votema Nov 2 '10 at 9:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.