Please enable JavaScript.
Coggle requires JavaScript to display documents.
MVP (Presenter (Doesn't implement interfaces (using interfaces will…
MVP
Presenter
-
-
it retained between configuration changes, like orientation changes (more about that few slides further!)
in a nutshell, everything that stayed in a fragment in out non-mvp architecture, but wasn't strictly ui related
-
-
-
View
-
-
Delegate users behavior to the presenter operating on raw data - like raw ids in term of clicking on the list
-
-
-
Model
-
-
not related to android, no android sdk used here
basically it starts from some interface that reflects some business process
and than consists from various classes that are splitted by their responsobilities
-
-
-