Xamarin Android文件提供程序Java.Lang.IollegalArgumentException:未能找



我使用Xamarin创建Android应用程序。我想在其他应用程序中打开我的应用程序文件(比如微软word应用程序中的.docx文件等(。我使用FileProvider,但总是得到这个错误:

Exception:Java.Lang.IllegalArgumentException: Failed to find configured root that contains...

这是我的FileProvider文件:

[Android.App.MetaData("android.support.FILE_PROVIDER_PATHS", Resource = "@xml/file_provider_path")]
[Android.Content.ContentProvider(new System.String[] { "${applicationId}.fileProvider" }, Exported = false, GrantUriPermissions = true, Name = "Android.Support.V4.Content.FileProvider")]
public  class AppFileProvider : Android.Support.V4.Content.FileProvider
{
public AppFileProvider()
{
}
}

我还有一个名为file_provider_path.xml的.xml文件,内容为:

<?xml version="1.0" encoding="UTF-8" ?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<files-path name="file_provider_path" path="/" />
</paths>

和获取文件uri我使用:

Java.IO.File _file = new Java.IO.File(Android.OS.Environment.ExternalStorageDirectory, "document1.docx");
AppFileProvider.GetUriForFile(this.ApplicationContext, this.Application.ApplicationContext.PackageName + ".fileProvider", _file)

你能帮我找到解决方案吗?

根据Mike的评论,我读到了https://developer.android.com/reference/android/support/v4/content/FileProvider#SpecifyFiles。我需要在file_provider_path.xml中设置"../"作为我的路径,因为我没有将文件保存在files文件夹中。

相关内容

  • 没有找到相关文章

最新更新