美文网首页android shareAndroid开发Android知识
RecyclerView支持库版本的问题

RecyclerView支持库版本的问题

作者: 666swb | 来源:发表于2016-06-06 15:39 被阅读2895次

    在appcompat的23.2.1的支持库中包含了RecyclerView的包,那就直接依赖23.2.1就好了。

    compile 'com.android.support:appcompat-v7:23.2.1'

    但是如果是appcompat的22.2.1的版本,那么需要依赖RecyclerView的版本,如下

    compile 'com.android.support:appcompat-v7:22.2.1'

    compile 'com.android.support:recyclerview-v7:22.2.1'

    具体的如下:

    dependencies {
        compile fileTree(dir: 'libs', include: ['*.jar'])
        compile 'com.android.support:appcompat-v7:22.2.1'
        compile 'com.android.support:design:22.2.1'
        compile 'com.jakewharton:butterknife:7.0.1'
        compile 'com.android.support:cardview-v7:22.0.0'
        compile 'com.android.support:recyclerview-v7:22.2.1'
    }
    

    相关文章

      网友评论

        本文标题:RecyclerView支持库版本的问题

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