我想做的就是简单地添加带有最近捕获的文件名的日志行。不幸的是,由于以下指示的错误,应用程序失败。下面提供了来自堆栈的代码和错误。

提前致谢,

阿纳尔


  java.lang.RuntimeException:无法交付结果
  ResultInfo {who = null,request = 100,result = -1,data = null}
  {az.justx.justx / az.justx.justx.MainActivity}:
  java.lang.NullPointerException:尝试调用虚拟方法
  空对象上的“ android.net.Uri android.content.Intent.getData()”
  参考


private void interceptCameraButtonClick() {

    Button cameraButton = (Button) findViewById(R.id.cam);

    cameraButton.setOnClickListener(
            new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    Intent imageIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
                    File imagesFolder = new File(Environment.getExternalStorageDirectory(), "MyImages");
                    imagesFolder.mkdirs(); // <----
                    String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());
                    File image = new File(imagesFolder, "AD_" + timeStamp + ".jpg");
                    Uri uriSavedImage = Uri.fromFile(image);
                    imageIntent.putExtra(MediaStore.EXTRA_OUTPUT, uriSavedImage);
                    startActivityForResult(imageIntent, 100);
                }
            }
    );

}

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {

    Log.i("Test", Integer.toString(resultCode));

    if (requestCode == CAPTURE_IMAGE_ACTIVITY_REQUEST_CODE) {
        if (resultCode == RESULT_OK) {
            // Image captured and saved to fileUri specified in the Intent
            Log.i("CALLED", "Image saved to:\n" +
                    data.getData());
            Toast.makeText(this, "Image saved to:\n" +
                    data.getData(), Toast.LENGTH_LONG).show();
        } else if (resultCode == RESULT_CANCELED) {
            // User cancelled the image capture
        } else {
            // Image capture failed, advise user
        }
    }

}

最佳答案

摄像机无需将发回UriIntent中的onActivityResult()发回。您已经知道Uri是什么了,就像您将其放在EXTRA_OUTPUT中一样。您只需要使用该值即可。请确保将其包括在已保存的实例状态中,因为当照相机应用程序处于前台时,您的过程可能会终止。

10-07 14:13