All Questions
4 questions
0
votes
1
answer
72
views
Java Mosby Fragments
How can I access MvpFragment from MvpActivity.
Fragment, with current code -
class Fragment1: MvpFragment<IView, Presenter>(){
override fun createPresenter(): Presenter {
return ...
1
vote
0
answers
65
views
Is it possible to use a Fragment as MvpView inside an Activity using Mosby
Is it possible to use a Fragment as MvpView inside an Activity using Mosby?
For example, this is a stripped-down version of TaskDetailActivity in Google's todo-mvp-dagger project:
public class ...
0
votes
1
answer
466
views
Implement MVP for passing data from network to listviews
I want to implement a MVP pattern for the following:
My view is a list fragment displaying a list.
My model is the data to be displayed to the list that come from network calls.
My controller is the ...
6
votes
5
answers
5k
views
Android pass data between Fragments
I have one Activity and 5 Fragment's. On the first Fragment user inputs phone number. On the last(fifth) Fragment I need to display this phone number, input other fields and send all the data to the ...