프로그래밍/Android
Binary XML file line #7: Error inflating class
showmiso
2013. 11. 14. 23:48
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로 변경하니까 잘됐다.
아 .........................