I have created a custom view in android which extends View. I override the onDraw() method and do my painting to the canvas there - no problem.
I understand that I should override the onMeasure() method as well and call setMeasuredDimension(width, height) with my desired dimensions.
I notice that if I position breakpoints in my code, onMeasure() fires before onDraw().
Now my problem is that I don't know my view's desired height until onDraw has finished executing. My height starts off as a default value of 100 and then gets set at the end of onDraw - but onMeasure has already been executed before this so my View is only 100 px high.
How do I design my view so that it gets re-measured after onDraw() so that the height of my view can be determined dynamically?