질문을 쓰기 전에 많이 검색했습니다. extra_output을 사용하여 카메라에서 이미지를 가져와 의도를 Uri에 저장합니다.가로 카메라 방향에서 ACTION_IMAGE_CAPTURE 인 텐트가 반환 될 때 onActivityResult에 대한 작업을 다시 시작할 수 없습니다.
이미지가 세로로 잡히거나 자동 회전없이 완벽하게 작동합니다. 그러나 가로 및 자동 회전을 사용하는 경우 일부 모델에서 오류가 발생합니다.
내 의도 코드 :
Intent camera = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
camera.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(imageFile));
startActivityForResult(camera, REQUEST_CAMERA);
내 onActivityResult를 조각 코드 :
java.lang.RuntimeException: Unable to resume activity {com.vicopo.com.lapoblainfo/com.vicopo.com.lapoblainfo.incidencia_detail}: java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=1, result=-1, data=null} to activity {com.vicopo.com.lapoblainfo/com.vicopo.com.lapoblainfo.incidencia_detail}: java.lang.NullPointerException
at android.app.ActivityThread.performResumeActivity(ActivityThread.java:2899)
at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:2928)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2363)
at android.app.ActivityThread.handleRelaunchActivity(ActivityThread.java:3865)
at android.app.ActivityThread.access$700(ActivityThread.java:156)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1346)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:153)
at android.app.ActivityThread.main(ActivityThread.java:5297)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:833)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:600)
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=1, result=-1, data=null} to activity {com.vicopo.com.lapoblainfo/com.vicopo.com.lapoblainfo.incidencia_detail}: java.lang.NullPointerException
at android.app.ActivityThread.deliverResults(ActivityThread.java:3488)
at android.app.ActivityThread.performResumeActivity(ActivityThread.java:2883)
... 13 more
Caused by: java.lang.NullPointerException
at com.vicopo.com.lapoblainfo.incidencia_detail.onActivityResult(incidencia_detail.java:145)
at android.app.Activity.dispatchActivityResult(Activity.java:5311)
at android.app.ActivityThread.deliverResults(ActivityThread.java:3484)
... 14 more
그리고
java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=1, result=-1, data=null} to activity {com.vicopo.com.lapoblainfo/com.vicopo.com.lapoblainfo.incidencia_detail}: java.lang.NullPointerException
at android.app.ActivityThread.deliverResults(ActivityThread.java:3135)
at android.app.ActivityThread.handleSendResult(ActivityThread.java:3178)
at android.app.ActivityThread.access$1100(ActivityThread.java:134)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1277)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:154)
at android.app.ActivityThread.main(ActivityThread.java:4624)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:809)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:576)
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.NullPointerException
at com.vicopo.com.lapoblainfo.incidencia_detail.onActivityResult(incidencia_detail.java:145)
at android.app.Activity.dispatchActivityResult(Activity.java:4663)
at android.app.ActivityThread.deliverResults(ActivityThread.java:3131)
... 11 more
:
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
ImageView imageFoto = (ImageView) findViewById(R.id.imageIncidenciaDetail);
imatgeOriginal = null;
if (requestCode == REQUEST_CAMERA && resultCode == RESULT_OK) {
//if(imageFile != null)
imatgeOriginal = BitmapFactory.decodeFile(imageFile.getAbsolutePath());
내가 실제로 두 개의 서로 다른 오류가
그리고 안드로이드 매니페스트 활동 코드 :
<activity
android:name=".incidencia_detail"
android:label="@string/title_activity_incidencia_detail"
android:screenOrientation="portrait"
android:configChanges="orientation"
>
나는 경우를하고 이미지가 null가 아닌 것을 확인할 수 있습니다. 그 응용 프로그램을 작동시키지 않으면 크래시가 발생하지 않지만 이미지는 null입니다.
제어가 타사 카메라 앱에서 사용자에게 반환되기 전에 프로세스가 종료 될 수 있습니다. 어떻게'imageFile'을 잡고 있는데, 그 경우'null'이되지 않을까요? – CommonsWare
"image is null"이라고 말하면'imatgeOriginal' 또는'imageFoto'를 의미합니까? –
"이미지가 null입니다."라고 말하면 이미지 파일을 의미합니다. imageFile은 output_extra에 전달하는 파일입니다. imageFoto는 imageView입니다. 이것은 null이되지 않습니다. 기본적으로 내부 이미지를 넣습니다. imageOriginal은 비트 맵입니다. 카메라 또는 갤러리에서 파일을받을 때 파일을 비트 맵으로 변환합니다. 코드를 다시 보았습니다. super.onActivityResult가 없습니다. 문제 일 수 있습니까? – Ausaes