我尝试从 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()