Android - is there a callback that gets called right after onResume()?
Is there a callback that gets always called after onResume()? I'd need that, because AFAIK, after onResume(), every View in the layout has been rendered, so I can measure their dimensions. Thanks. Austin Hanson Activity | Android Developers protected void onPostResume () Since: API Level 1 Called when activity resume is complete (after onResume() has been called). Applications will generally not implement this method; it is intended for system classes to do final setup after application resume code has run. Derived classes must call through to the super class's implementation of this method.