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

后端 未结 6 497
走了就别回头了
走了就别回头了 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:23

    If you do not know which jar file contains the class your are looking for you can use this bash command. On Windows, you can run it if you install Cygwin.

    for i in find . -name \*.jar ; do echo $i; jar tvf $i | fgrep $*; done

    This should search in the subdirectories and help you find the missing jar file.

提交回复
热议问题