How to import RecyclerView for Android L-preview

前端 未结 22 1661
被撕碎了的回忆
被撕碎了的回忆 2020-12-02 14:55

Trying to use the new RecyclerView from the support library. I downloaded the 20 update for the support library using the SDK manager.

I\'ve added the jar file to th

22条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-02 15:34

    I have created using following lines and this works for me.

    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support:recyclerview-v7:28.0.0'
    

    For AndroidX

    implementation 'androidx.recyclerview:recyclerview:1.1.0'
    implementation 'androidx.cardview:cardview:1.0.0'
    

    For complete tutorial please see here

提交回复
热议问题