我曾经使用下面的代码同时捕获和裁剪。现在它停止在Kitkat工作。我是否需要以其他方式进行此操作?
Intent cameraIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
cameraIntent.putExtra(MediaStore.EXTRA_OUTPUT, tempUri);
cameraIntent.putExtra("crop", "true");
cameraIntent.putExtra("outputX", defaultWidth);
cameraIntent.putExtra("outputY", defaultHeight);
getActivity().startActivityForResult(cameraIntent, 1);
或者我是否需要为庄稼开始单独的意图?
Intent cropIntent = new Intent("com.android.camera.action.CROP");
cropIntent.putExtra("crop", "true");
cropIntent.putExtra("outputX", defaultWidth);
cropIntent.putExtra("outputY", defaultHeight);
cropIntent.putExtra("return-data", true);
startActivityForResult(cropIntent, 2);