Java/Android

49_Android Error

우오우어아오앙 2016. 12. 20. 23:28
728x90

안드로이드 에러



 Caused by: java.lang.ClassNotFoundException: Didn't find class "android.view.RecyclerView" on path



오잉?

실행을 하니 강종된다!!!!!


메시지를 대충 해석하면 "android.view.RecyclerView" 라는 클래스를 찾을 수 없다는 에러다.


RecyclerView을 사용하는 xml을 수정해야 한다.

RecyclerView 앞에 android.support.v7.widget 라는 것을 명시해주면 된다.



<RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent">
android:id="@+id/recyclerView
</RecyclerView>


↓↓↓↓↓


<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent">
android:id="@+id/recyclerView
</android.support.v7.widget.RecyclerView>


728x90
반응형

'Java > Android' 카테고리의 다른 글

65_adb 설치된 앱 제거  (0) 2017.06.16
63_uiautomatorviewer  (0) 2017.06.14
39_안드로이드 스튜디오 오류  (0) 2016.10.17
37_getString()  (0) 2016.10.13
36_내 번호 알아내기  (0) 2016.10.12