RecyclerAdapter框架

先在 build.gradle(Project:XXXX) 的 repositories 添加:

allprojects {

repositories {

...

maven { url "[https://jitpack.io"](https://jitpack.io%22/); }

}

}

然后在 build.gradle(Module:app) 的 dependencies 添加:

dependencies {

compile 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.30'

}

https://github.com/CymChad/BaseRecyclerViewAdapterHelper

http://www.jianshu.com/p/b343fcff51b0

你可能感兴趣的:(RecyclerAdapter框架)