반응형
Notice
Recent Posts
Recent Comments
«   2024/05   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Archives
Today
Total
관리 메뉴

Do Something IT

[안드로이드] android.view.InflateException: Binary XML file line #39: Error inflating class <unknown> 본문

Android/Error

[안드로이드] android.view.InflateException: Binary XML file line #39: Error inflating class <unknown>

아낙시만더 2011. 6. 13. 14:25
반응형
출처 :http://blog.naver.com/PostView.nhn?blogId=bestrok&logNo=20101837454
레이아웃에 지정된 테그명이 com.xxx.xxx.Xxx 일 텐데... 실제로 존재하지 않는 경우 위와 같은 에러 발생.

1. XML 레이아웃의 테그를 변경하던가
2. 클래스를 xml에 맞게 변경하던가 하면 된다.

출처 : http://www.xgenesis.org/index.php?mid=mobileProgramming&document_srl=21491

android.view.InflateException: Binary XML file line #숫자: Error inflating class 클래스이름


숫자는 res/layout/레이아웃.xml 파일의 Line Number를 의미하는데, 

해당 라인넘버에 지정된 태그명에 해당하는 클래스가 없을 경우에 발생한다.


클래스의 경로가 정확한지 확인해보자.


반응형
Comments