还在繁琐的敲MVP接口和实现类吗,教你一秒搞定。

在MVP的使用过程中,我们需要反复的去写各种MVP的接口和实现类, 实在是 太麻烦了!!所以抽时间撸了一款插件(只可用于Intellj IDEA 和Android Studio),用于生成MVP接口以及他的实现类,可以略微提升一点开发效率。

效果图如下: 

20160725094133875.gif    

注意

对于MVP模式,定义一个Contract类来放置Model View Presenter 的接口,将大大减少类文件。将普通的接口替代如下

public class GoodsInfoContract {  public interface GoodsInfoView{
  }  public interface GoodsInfoPresenter{
  }  public interface GoodsInfoModel{
  }
}

如何使用

Step1

去github上下载jar包 
https://github.com/githubwing/MVPHelper/

Step2

按照提示安装jar。

step-1.png

step0.png

Step3

在Contract类内部,点击Generate菜单,选择MVPHelper即可生成对应文件

注意:Contract目前只能放在包 contract 中!

step1.pngstep2.png

其实我是来骗star的。。 求star啊

https://github.com/githubwing/MVPHelper/