-
Notifications
You must be signed in to change notification settings - Fork 206
Home
Alexander Blinov edited this page Nov 26, 2017
·
29 revisions
Moxy is Android MVP helper library
What's happened here:
- At View happened action
, that is passed to Presenter
-
Presenter sends command
to ViewState
-
ViewState adds a command
to commands queue, and then passes it to View
-
View brings itself into a state specified in the command
-
Presenter starts async request
to Model
-
Presenter receives result of request
from Model
-
Presenter sends command
to ViewState
-
ViewState adds a command
to commands queue, remove existing command
and then passes it to View
-
View brings itself into a state specified in the command
-
Presenter sends command
to ViewState
-
ViewState adds a command
to commands queue and then passes it to View
-
View brings itself into a state specified in the command
- New/recreated View attach to existing Presenter
- ViewState sends queue of saved commands to new/recreate View
- New/recreated View brings itself into a state specified in the commands
and
[EN] Android without Lifecycle: MPVsV approach with Moxy
[EN] MVP on steroids - how we force the robot to write code for you
[RU] Moxy — реализация MVP под Android с щепоткой магии
[RU] Android в лицах — выпуск про Moxy (youtube)
[RU] Moxy. Из чего состоит и как этим пользоваться (youtube)
[RU] Moxy. Как правильно пользоваться? (youtube)
[RU] MVP на стероидах: заставляем робота писать код за вас
[RU] Moxy. Из чего состоит и как этим пользоваться (slideshare)
[RU] MVP, Moxy. Как правильно пользоваться (slideshare)
[RU] Стратегии в Moxy (часть 1)
[RU] Стратегии в Moxy (часть 2)
- Home
- Causes of Moxy
- Getting started
- How to's
- Components
- Multiple modules
- Moxy & Kotlin
- Android Studio Templates
- FAQ
- Changelog

, that is passed to Presenter
to ViewState
to Model
to ViewState
to ViewState