I started wondering about dependencies and invocation order between the model and the UI, respectively controller–the activity classes:
When I want to restore the state of my Android application in the method onRestoreInstanceState should I:
- Update the state of the model, which then makes an invocation to the activity updating the UI?
- Update the state of the model and then update the UI based on the model state?
So which one should I prefer?
So all I am looking here really is something like a guide how to order the dependency calls, I know that Android does not really follow MVC, so what should I use as an orientation?