The only difference of retained instance in Fragment's lifecycle is that onCreate() don't calls. But at this state View isn't inflated yet.
When must I call methods like loadNews() of Presenter of Fragment with setRetainInstance(true)? I want to…
I just started out a new Sample Project to test Conductor with Mosby.
The problem is, after I navigate away from the FirstScreen or rotate the device, after Rx onNext callback, the isViewAttached() is returning always false, and I can't understand…
Let's imagine situation:
User click on 'Login' button and Fragment(View) call Presenter's method doLogin().
Presenter starts some async work and now Boom! app is closed(moved to recent apps)
Presenter survives and async work is still…
I try to add Mosby library to my pet project, but i cannot understand how to include it to project?
I try to add mosby by add as module-> add as Gradle project, but it not compile.
please, can you link me some tutorial how to add projects (source)…
For my new app i want to use the Mosby Framework.
At the moment i have an activity with two tabs and it works fine for my.
Now i want to implement a new activity with 12 tabs and when i want to switch to a new tab i get a…
In mosby and in examples, the intent methods in the view takes one argument at most. How do I pass more than 1 arguments to interactor through a presenter?
I've created an application using RxJava along with Retrofit and Mosby/Conductor. Now I have this question regarding view disposal and what goes with it.
Consider the following code.
public class IndexPresenter extends MvpBasePresenter…
I'm going to start a new android project, and I want to use clean architecture and MVP. I've been reading about this, and I've found the Mosby library, however, which are the benefits of using the Mosby library instead of using MVP without Mosby?…