问题: Error inflating class RecyclerView

问题: Error inflating class RecyclerView-2020-4-25
详细:

2020-04-25 20:58:53.635 29306-29306/com.example.index_school_07 E/AndroidRuntime: 
FATAL EXCEPTION: main
Process: com.example.index_school_07, PID: 29306
android.view.InflateException: Binary XML file 
line #35 in com.example.index_school_07:layout/item_detaillist: Binary XML file
line #35 in com.example.index_school_07:layout/item_detaillist: Error inflating class 
android.support.v7.widget.RecyclerView
Caused by: android.view.InflateException: Binary XML file 
line #35 in com.example.index_school_07:layout/item_detaillist:  Error inflating class 
android.support.v7.widget.RecyclerView
Caused by: java.lang.ClassNotFoundException: android.support.v7.widget.RecyclerView

看到里面
com.example.index_school_07:layout/item_detaillist: Error inflating class android.support.v7.widget.RecyclerView
问题: Error inflating class RecyclerView_第1张图片
这里报错
解决

android.support.v7.widget.RecyclerView

换成

androidx.recyclerview.widget.RecyclerView

备注我的依赖
implementation ‘com.yqritc:recyclerview-flexibledivider:1.4.0’
implementation “androidx.recyclerview:recyclerview:1.1.0”
implementation “androidx.recyclerview:recyclerview-selection:1.1.0-rc01”

你可能感兴趣的:(问题(Bug))