Pass bundle intent in android using MVP
问题 I want to pass the Model data into another activity using Parceler through Bundle intent. My problem is how could I pass the data from Presenter into the View layer to display in another activity using MVP architecture in android? 回答1: This is certainly possible. Presuming that your Activity implements your View interface you'd have a method in the interface like: void startNextActivity(MyData data); Then in the Activity: @Override void startNextActivity(MyData data) { // create bundle //