前面と背面の両方のカメラを使用するカメラ アプリを構築していますが、このステートメントで null ポインター エラーが発生します。
public void onClick(View ビュー) {
//camera.takePicture(shutter, raw, postview, jpeg)
//camera.takePicture(null, null, new PhotoHandler(getApplicationContext()));
camera.takePicture(null, null,
new PhotoHandler(MakePhotoActivity.this));
}
問題がここにあるのがわからないので、助けてください。
前もって感謝します。
02-07 23:06:12.445: E/AndroidRuntime(30045): FATAL EXCEPTION: main
02-07 23:06:12.445: E/AndroidRuntime(30045): java.lang.IllegalStateException: Could not execute method of the activity
02-07 23:06:12.445: E/AndroidRuntime(30045): at android.view.View$1.onClick(View.java:2144)
02-07 23:06:12.445: E/AndroidRuntime(30045): at android.view.View.performClick(View.java:2485)
02-07 23:06:12.445: E/AndroidRuntime(30045): at android.view.View$PerformClick.run(View.java:9080)
02-07 23:06:12.445: E/AndroidRuntime(30045): at android.os.Handler.handleCallback(Handler.java:587)
02-07 23:06:12.445: E/AndroidRuntime(30045): at android.os.Handler.dispatchMessage(Handler.java:92)
02-07 23:06:12.445: E/AndroidRuntime(30045): at android.os.Looper.loop(Looper.java:130)
02-07 23:06:12.445: E/AndroidRuntime(30045): at android.app.ActivityThread.main(ActivityThread.java:3687)
02-07 23:06:12.445: E/AndroidRuntime(30045): at java.lang.reflect.Method.invokeNative(Native Method)
02-07 23:06:12.445: E/AndroidRuntime(30045): at java.lang.reflect.Method.invoke(Method.java:507)
02-07 23:06:12.445: E/AndroidRuntime(30045): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:867)
02-07 23:06:12.445: E/AndroidRuntime(30045): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:625)
02-07 23:06:12.445: E/AndroidRuntime(30045): at dalvik.system.NativeStart.main(Native Method)
02-07 23:06:12.445: E/AndroidRuntime(30045): Caused by: java.lang.reflect.InvocationTargetException
02-07 23:06:12.445: E/AndroidRuntime(30045): at java.lang.reflect.Method.invokeNative(Native Method)
02-07 23:06:12.445: E/AndroidRuntime(30045): at java.lang.reflect.Method.invoke(Method.java:507)
02-07 23:06:12.445: E/AndroidRuntime(30045): at android.view.View$1.onClick(View.java:2139)
02-07 23:06:12.445: E/AndroidRuntime(30045): ... 11 more
02-07 23:06:12.445: E/AndroidRuntime(30045): Caused by: java.lang.NullPointerException
02-07 23:06:12.445: E/AndroidRuntime(30045): at com.example.cameraapp.MakePhotoActivity.onClick(MakePhotoActivity.java:41)