MVP on Android

Source: Internet
Author: User

Model View presenter

Model Data Class View class presenter processing logic processing class

Note that there is usually an interface between presenter and view.

 

View (activity)

 Package  Com. examples;  Import  Com. Examples. Presenters. Presenter;  Import  Com. Examples. Views. iview;  Public   Class View Extends Activity Implements  Iview {  /**  Called when the activity is first created.  */  Presenter _ presenter;  Public  View () {_ presenter = New Presenter ( This  ) ;}@ Override  Public   Void Oncreate (bundle savedinstancestate ){  Super  . Oncreate (savedinstancestate); setcontentview (R. layout. Main); _ presenter. Action (Params) ;}@ override  Public   Void  Setsomething (Params ){  //  Iview Interface Method  }} 

Presenters

 Package  Com. Examples. presenters;  Public  Class  Presenter {  Private  Iview _ view;  Private  Model _ model;  Public  Presenter (iview view) {_ view = View ;}  //  Constructor        Public   Void  Action (Params ){  // Execute Processing  _ View. setsomething (Params );}} 

Views (Interface)

 
PackageCom. Examples. views;Public InterfaceIview {Public VoidSetsomething (Params );}

Model

PackageCom. example. model;Public ClassModel {string AAA;Public VoidSet (string s) {aaa=S ;}PublicString get () {ruturn AAA ;}}

 

 

Two blog posts are recommended:

Http://magenic.com/Blog/AnMVPPatternforAndroid.aspx

 

 

Http://jamespeckham.com/blog/10-11-21/MVP_on_Android.aspx

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.