我正在尝试共享存储在App内部存储中的.xlsx文件。
当我尝试下面的代码时,它显示无法加载reasource。
public void share(String fileName, Context context)
{
Uri fileUri = Uri.parse(Environment.getDataDirectory() + getPackageName() + "/files/" + fileName);
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.putExtra(Intent.EXTRA_STREAM, fileUri);
shareIntent.setType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
startActivity(Intent.createChooser(shareIntent, "Send to"));
}
任何帮助都会很明显