gpt4 book ai didi

android - Camera Intent,FileUriExposedException,在存储中保存图像并检索图像位图和文件路径

转载 作者:搜寻专家 更新时间:2023-11-01 09:26:49 25 4
gpt4 key购买 nike

在 Nougat 以下的安卓设备上,我可以毫无问题地将图像保存在设备的外部存储器中,然后存储文件路径并使用 Picasso 显示图像。 .

但是,在 Nougat 设备上进行测试时,每当我启动相机 Intent 时,我都会收到 FileUriExposedException。

我在manifest中添加了fileprovider,还添加了一个filepaths.xml

list .xml:

<provider
android:authorities="${applicationId}.fileprovider"
android:exported="false"
android:grantUriPermissions="true"
android:name="android.support.v4.content.FileProvider">

<meta-data android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/filepaths" />

</provider>

文件路径.xml:

<paths>
<external-path name="mediaimages" path="." />
</paths>

这是我的代码

MainActivity.java

 Intent takePicture = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);

String authorities = getPackageName() + ".fileprovider";

File image = getTempFile(AddListingPage2Activity.this);
try {
image.createNewFile(); //Getting ignore warning
} catch (IOException e) {
e.printStackTrace();
}

Uri imageUri = FileProvider.getUriForFile(AddListingPage2Activity.this, authorities, image);
mImageFileUri = imageUri;

takePicture.putExtra(MediaStore.EXTRA_OUTPUT, imageUri);

startActivityForResult(takePicture, CAMERA_REQ);

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

switch (requestCode) {
case CAMERA_REQ:
if (resultCode == RESULT_OK) {
//How to get bitmap and create file to store in storage
Bitmap bitmap = null;
bitmap = BitmapFactory.decodeFile(mImageFileUri.getPath()); //returns null

try {
bitmap = MediaStore.Images.Media.getBitmap(this.getContentResolver(), mImageFileUri); //returns null as well
} catch (IOException e) {
e.printStackTrace();
}
}
break;

}

private File getTempFile(Context context) {
final File path = new File(Environment.getExternalStorageDirectory(), context.getPackageName());
if (!path.exists()) {
path.mkdir(); //Getting ignored warning
}
return new File(path, "myImage.jpg");
}

如何在 OnActivityResult 中保存图像文件并检索文件路径?

最佳答案

我想通了为什么相机应用程序无法保存图像。该应用程序应该将图像保存在 ./packagename/myImage.jpg 中,但 myImage.jpg 被创建为目录。删除文件夹并尝试运行应用程序后,我终于能够保存图像。

关于android - Camera Intent,FileUriExposedException,在存储中保存图像并检索图像位图和文件路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49996130/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com