可能是事先build.gradle里已经有RecyclerView依赖了,即:
implementation ‘androidx.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"
/>
感谢!