Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 1.1 KB

README.md

File metadata and controls

14 lines (12 loc) · 1.1 KB

This quick example demonstrates:

  • MVP with Mosby 2.0
  • Retaining state (e.g. loading / showing content) across configuration changes (portrait->landscape) with Mosby ViewState
  • Retaining the Presenter across configuration changes
    • The Presenter may be in the middle of accessing data / calling an API

Notes: In this demo the presenter just constructs an Observable that simulates an API call by waiting 10 seconds before emitting a data stream (of number words) to be presented in the UI.

Next steps you could look into:

  • Injecting the Presenter into MainActivity with Dagger 2
    • Bonus points for creating an (Activity scoped) ActivityComponent that uses an ApplicationComponent as a dependency
  • Use Java 8 lambdas in the RX bits - either directly in Android Studio 2.1+ or the retrolambda module
  • Use Butterknife to bind the views
  • Look at how EventBus and Android Priority Job Queue may be used to decouple the Presenter from the task of data loading.