作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在关注this tutorial使用 FileProvider 而不是 Uri.FromFile()
但我不确定如何在我的服务中使用 FileProvider。
FileProvider.getUriForFile()
需要第一个参数的上下文,但因为我在服务中使用它,所以我没有 Activity 上下文。
我该怎么办?
我需要改变这个:
Uri swatchImageUri = Uri.fromFile(favoritesImageFile);
按照他们上面的建议。
这是我在不使用 FileProvider 的情况下遇到的当前异常:
2019-07-23 23:04:42.748 11034-11034/com.company.projname E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.company.projname, PID: 11034
android.os.FileUriExposedException: file:///storage/emulated/0/Android/data/com.company.projname/cache/colors.png exposed beyond app through ClipData.Item.getUri()
at android.os.StrictMode.onFileUriExposed(StrictMode.java:1978)
at android.net.Uri.checkFileUriExposed(Uri.java:2371)
at android.content.ClipData.prepareToLeaveProcess(ClipData.java:963)
at android.content.Intent.prepareToLeaveProcess(Intent.java:10216)
at android.content.Intent.prepareToLeaveProcess(Intent.java:10222)
at android.content.Intent.prepareToLeaveProcess(Intent.java:10201)
at android.app.Instrumentation.execStartActivity(Instrumentation.java:1667)
at android.app.Activity.startActivityForResult(Activity.java:4586)
代码 fragment :
public void shareColorSwatch(SwatchViewModel model){
try {
String swatchName = model.First.get().Name.get().replaceAll("\\s","").replaceAll("'", "") + "_" +
model.Second.get().Name.get().replaceAll("\\s","").replaceAll("'", "") + "_" +
model.Third.get().Name.get().replaceAll("\\s","").replaceAll("'", "");
Display display = activity.getWindowManager().getDefaultDisplay();
int screenWidth = display.getWidth();
int screenHeight = display.getHeight();
Bitmap swatchBitmap = createColorSwatchBitmap(model, screenWidth, screenHeight);
String fileName = String.format("swatch_%s.png", swatchName);
File swatchImageFile = getImageFile(activity,fileName, swatchBitmap, true);
Uri swatchImageUri = FileProvider.getUriForFile(//,
BuildConfig.APPLICATION_ID + ".provider",
swatchImageFile);
//Uri swatchImageUri = Uri.fromFile(swatchImageFile);
shareImage(activity,swatchName,swatchImageUri);
}catch (Exception e)
{
e.printStackTrace();
}
}
最佳答案
插入行:
Uri swatchImageUri = FileProvider.getUriForFile(//,
BuildConfig.APPLICATION_ID + ".provider",
swatchImageFile);
将 Activity 作为第一个参数传递:
Uri swatchImageUri = FileProvider.getUriForFile(activity,
BuildConfig.APPLICATION_ID + ".provider",
swatchImageFile);
关于java - android.os.FileUriExposeException : at android. os.StrictMode.onFileUriExpose,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57184281/
我正在关注this tutorial使用 FileProvider 而不是 Uri.FromFile() 但我不确定如何在我的服务中使用 FileProvider。 FileProvider.getU
我是一名优秀的程序员,十分优秀!