Android onMeasure() vs. onLayout() Dilemma
The documentation says something to the effect of “onMeasure() is called to determine the size of the view.” and “onLayout() is called to set the size and position of the child views.” The problem is that onMeasure() is called before onLayput() and never after it. How can a…
Continue reading