Error inflating class android.support.v7.widget.RecyclerView

Or… in my case, I was including the androidx version of RecyclerView in my dependencies (build.gradle) but using the other in my XML… Doh.

Replaced

android.support.v7.widget.RecyclerView

with

androidx.recyclerview.widget.RecyclerView

and it worked! 🙂

Leave a Comment