I have a question about MVP. In my studies, I understood that in M = Model everything that has to do with business rules and data manipulation codes related to the business, access to a bank, adapters, etc. In P = Presenter is the presentation, or the interaction between the Model and the View to manipulate, chewing what should be shown. And the View is the preview!
But on Android we have for example native android methods like the onRequestPermissionsResult, OnClickListener listenerTvAddDetalhesRotulo, onActivityResult. Would these items be in the presentation or template?
Or because they are native items of the android I left like this in the same activity?