RecyclerAdapter框架

作者: 奔跑的图腾 | 来源:发表于2018-03-06 10:46 被阅读0次

    先在 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框架

        本文链接:https://www.haomeiwen.com/subject/guslfftx.html