Android studio 的recyclerView的控件使用排错经历

可能是事先build.gradle里已经有RecyclerView依赖了,即:

implementationandroidx.recyclerview:recyclerview:1.2.0-alpha01

 

于是便不必要再添加:

implementation ‘com.android.support:recyclerview-v7:29.0.3‘语句了。

还有activity_main.xml中的控件导入也不再是书上那样,应当使用:

<androidx.recyclerview.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>

参考文章:https://blog.csdn.net/qq_42138454/article/details/104357001?depth_1-utm_source=distribute.pc_relevant.none-task&utm_source=distribute.pc_relevant.none-task

感谢!

Android studio 的recyclerView的控件使用排错经历

上一篇:ApiBoot - ApiBoot Quartz 使用文档


下一篇:ApiBoot - ApiBoot Alibaba Sms 使用文档