1

我尝试从 android/data/mypackage/files/file.pdf 共享一个 pdf 文件我也在这个应用程序中生成这些 pdf,当我尝试共享它时,pdf 不会出现在电子邮件的附件中,或者谷歌驱动器显示类似:“没有数据可共享”。这是我分享pdf的代码:

            val aName = intent.getStringExtra("iName")
            val file = File(this.getExternalFilesDir(null)?.absolutePath.toString(), "$aName")
            val shareIntent = Intent(Intent.ACTION_SEND)
            shareIntent.putExtra(Intent.EXTRA_STREAM,  file)
            shareIntent.flags = Intent.FLAG_GRANT_READ_URI_PERMISSION
            shareIntent.type = "application/pdf"
            startActivity(Intent.createChooser(shareIntent, "share.."))
            Toast.makeText(this,"$file",Toast.LENGTH_SHORT).show()

当我敬酒时,pdf 路径看起来是正确的: 党卫军

4

1 回答 1

5

问题是您没有使用URI,只是发送路径,您需要几件事。

提供者路径

您必须在以下文件夹provider_paths.xml下创建:xmlres

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

Manifest在下面设置提供者Aplication

<provider
  android:name="androidx.core.content.FileProvider"
  android:authorities="${applicationId}.provider"
  android:exported="false"
  android:grantUriPermissions="true">
     <meta-data
       android:name="android.support.FILE_PROVIDER_PATHS"
       android:resource="@xml/provider_paths" />
</provider>

获取 URI

fun uriFromFile(context:Context, file:File):Uri {
  if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N)
  {
    return FileProvider.getUriForFile(context, BuildConfig.APPLICATION_ID + ".provider", file)
  }
  else
  {
    return Uri.fromFile(file)
  }
}

您的最终代码:

val aName = intent.getStringExtra("iName")
            val shareIntent = Intent(Intent.ACTION_SEND)
            shareIntent.putExtra(Intent.EXTRA_STREAM,  uriFromFile(context,File(this.getExternalFilesDir(null)?.absolutePath.toString(), "$aName")))
            shareIntent.flags = Intent.FLAG_GRANT_READ_URI_PERMISSION
            shareIntent.type = "application/pdf"
            startActivity(Intent.createChooser(shareIntent, "share.."))

我没有测试代码,从“内存”编写它,让我知道它是否适合你。

于 2020-11-13T12:02:09.633 回答