Error inflating class RecyclerView

后端 未结 5 1471
野性不改
野性不改 2020-12-17 08:57

So my code simply makes a list of CardViews using RecyclerView. Upon running my code i kept getting a weird error claiming there was an error in my xml. After tinkering for

5条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-17 09:16

    RecyclerView is not included in base Android framework, only widgets in base Android framework (like ListView, GridView etc) can be specified in layout without full namespace. RecyclerView is part of recyclerview-v7 support library.

提交回复
热议问题