Android MVP – Should avoid using R.string references in presenter?
I consider that there’s no reason to call any android code in Presenter (But you always can do it). So in your case: View / activity onCreate() calls -> presenter.onCreate(); Presenter onCreate() calls -> view.setTextLabel() or whatever you want in the view. Always decouple Android SDK from presenters. In Github, you can find some examples … Read more