[Solved] I created a recycler view nd its not working please suggest some solution


Binary XML file line #8: Error inflating class android.support.v7.app.RecycleListView Caused by: java.lang.ClassNotFoundException: Didn’t find class “android.support.v7.app.RecycleListView

Your layout file is faulty and you should replace the faulty reference to

android.support.v7.app.RecycleListView

with

android.support.v7.widget.RecyclerView

2

solved I created a recycler view nd its not working please suggest some solution