Didn't find class "android.support.v7.widget.RecyclerView

后端 未结 6 456
走了就别回头了
走了就别回头了 2021-01-07 23:45

I\'m getting this exception when running:

android.view.InflateException: Binary XML file line #8: Error inflating class android.support.v7.widget.RecyclerView

6条回答
  •  悲哀的现实
    2021-01-08 00:28

    Switching to Android Studio is a better option but the rendering problem is still there.

    To remove the same in Android Studio, add the "Gradle Dependencies" into your module.

     dependencies {
        ...
        compile 'com.android.support:recyclerview-v7:21.0.+'
       }
    

    Hope this helps somebody as it helped me. This is a small change but very annoying.

提交回复
热议问题