If I call a requestLayout() on a View, shouldn't it call invalidate() on the same View, forcing the view to be drawn after the layout recalculations are done?
A:
If the View changes size, it will be redrawn automatically. If the View remains the same size, invalidate is not called.
Romain Guy
2010-10-02 04:23:13