I'm trying to use MVP in my new project. I have a Single Activity and multiple presenters that can be associated with it.
- Presenter1 - Load Activity Data
- Presenter2 - Load User data - that can be used in multiple Activities (So this presenter will be used in multiple activities
- Presenter3 - User Actions - This can also be used in more than one Activities.
For now, I have used all the 3 presenters for one Activity. Is there anything I can do to use only single presenter to access all the methods for the 3 presenters? Searched a lot, but could not find any relevant reference. Thanks