Android11上Cameraactioncrop功能无法工作
创始人
2024-08-20 11:01:51
0

在Android 11上,Camera intent的crop效果已被弃用,因此无法直接使用。相反,可以使用其他方法在应用程序内创建裁剪效果。以下是一个示例代码:

private Uri mCropUri;
private File mFilePath;

private void startCropIntent() {
   Intent cropIntent = new Intent();

   // 创建一个新的裁剪文件
   try {
       mFilePath = createImageFile();
   } catch (IOException e) {
       e.printStackTrace();
   }

   // 将裁剪文件URI绑定到intent上
   if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
       mCropUri = FileProvider.getUriForFile(this, "com.your.package.fileprovider", mFilePath);
       cropIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
       cropIntent.addFlags(Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
   } else {
       mCropUri = Uri.fromFile(mFilePath);
   }

   cropIntent.setAction("com.android.camera.action.CROP");
   cropIntent.setDataAndType(mImageUri, "image/*");
   cropIntent.putExtra("crop", "true");
   cropIntent.putExtra("aspectX", 1);
   cropIntent.putExtra("aspectY", 1);
   cropIntent.putExtra("outputX", 256);
   cropIntent.putExtra("outputY", 256);
   cropIntent.putExtra("scale", true);
   cropIntent.putExtra("return-data", false);
   cropIntent.putExtra(MediaStore.EXTRA_OUTPUT, mCropUri);

   startActivityForResult(cropIntent, CROP_IMAGE);
}

private File createImageFile() throws IOException {
   // 在应用目录下创建一个新的JPEG文件并返回其路径
   String imageFileName = "JPEG_" + System.currentTimeMillis() + "_";
   File storageDir = getExternalFilesDir(Environment.DIRECTORY_PICTURES);
   return File.createTempFile(imageFileName, ".jpg", storageDir);
}

其中,createImageFile()方法用于在应用程序目录中创建一个新的JPEG文件,startCropIntent()方法用于启动裁剪意图并获取裁剪后的图像文件的路径。在此示例

相关内容

热门资讯

安装apache-beam==... 出现此错误可能是因为用户的Python版本太低,而apache-beam==2.34.0需要更高的P...
避免在粘贴双引号时向VS 20... 在粘贴双引号时向VS 2022添加反斜杠的问题通常是由于编辑器的自动转义功能引起的。为了避免这个问题...
Android Recycle... 要在Android RecyclerView中实现滑动卡片效果,可以按照以下步骤进行操作:首先,在项...
omi系统和安卓系统哪个好,揭... OMI系统和安卓系统哪个好?这个问题就像是在问“苹果和橘子哪个更甜”,每个人都有自己的答案。今天,我...
原生ios和安卓系统,原生对比... 亲爱的读者们,你是否曾好奇过,为什么你的iPhone和安卓手机在操作体验上有着天壤之别?今天,就让我...
Android - 无法确定任... 这个错误通常发生在Android项目中,表示编译Debug版本的Java代码时出现了依赖关系问题。下...
Android - NDK 预... 在Android NDK的构建过程中,LOCAL_SRC_FILES只能包含一个项目。如果需要在ND...
Akka生成Actor问题 在Akka框架中,可以使用ActorSystem对象生成Actor。但是,当我们在Actor类中尝试...
Agora-RTC-React... 出现这个错误原因是因为在 React 组件中使用,import AgoraRTC from “ago...
Alertmanager在pr... 首先,在Prometheus配置文件中,确保Alertmanager URL已正确配置。例如:ale...