关于在使用RecyclerView时出现错误Error inflating class android.support.v7.widget.RecycleView

开发环境:Android Studio

出现问题的代码块是:
<android.support.v7.widget.RecyclerView
        android:id="@+id/msg_recycler_view"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"/>

解决办法如下
代码替换为:
<androidx.recyclerview.widget.RecyclerView
        android:id="@+id/msg_recycler_view"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"/>

发布了14 篇原创文章 · 获赞 5 · 访问量 2612

猜你喜欢

转载自blog.csdn.net/XingTina/article/details/101024838