본문 바로가기

프로그래밍/Android

Binary XML file line #7: Error inflating class

11-14 23:37:40.721: E/AndroidRuntime(2778): FATAL EXCEPTION: main

11-14 23:37:40.721: E/AndroidRuntime(2778): java.lang.RuntimeException: Unable to start activity ComponentInfo{miso.ux_proj/miso.ux_proj.magicscan.magicscan_cameraActivity}: android.view.InflateException: Binary XML file line #7: Error inflating class mono.jni.magicscan.magicscan_cameraSurfaceView



XML 파일에서 


    <miso.ux_proj.magicscan.magicscan_cameraSurfaceView

        android:id="@+id/preview"

        android:layout_width="fill_parent"

        android:layout_height="fill_parent" />


package 명을 수정해라.


package 명에 _바가 있으면

1이 생긴다.


내 경우


miso.ux_proj.~~~

였는데, 

jni header 에서 계속


miso.ux_1proj.~~~

라고 생기는 것이다 .......


결국 ux_proj를 uxproj로 변경하니까 잘됐다.


아 ......................... 



'프로그래밍 > Android' 카테고리의 다른 글

Installation failed due to invalid APK file!  (0) 2013.11.15
jni 할때 Edit Configuration 꼭 할 것  (0) 2013.11.15
android sdk spen  (0) 2013.11.05
android debug mode  (0) 2013.09.30
jintarray  (0) 2013.09.25