【发布时间】:2019-05-29 09:47:33
【问题描述】:
在Android Pie,我想将我的 CSV 文件分享到任何共享应用程序,例如蓝牙或电子邮件等...它在较低版本中运行,但在 9.0 中不会
final String test = "content://" + Environment.getExternalStorageDirectory()
+ "/Download" + "/" + "ProgressivePayment.csv";
Intent sharingIntent = new Intent();
sharingIntent.setAction(Intent.ACTION_SEND);
sharingIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(test));
sharingIntent.setType("text/csv");
startActivity(Intent.createChooser(sharingIntent, "share file with"));
【问题讨论】:
-
它在 Android Pie 中如何不起作用?它会抛出任何
Exception还是根本不打开共享视图? -
它将打开共享视图但它不会读取文件但如果在较低版本上它将读取并发送
-
logcat 中是否有任何警告或错误?
-
fileuriexposedexception-file-storage-emulated-0-test-txt-exposed