我知道如何从SD卡共享文件,但这次我必须从资源文件夹共享文件。
请参阅下面的代码,我用它来共享SD中的文件
String fileToShare = Environment.getExternalStorageDirectory().getPath() +"/Downloads/" + fileName;
newFile = new File(fileToPrint);
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
intent.setType("audio/mp3");
intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(newFile));
startActivity(intent);