我想将原始文件夹中的 mp3 文件共享到社交应用程序。当我在 whatsapp 上分享时,它显示的文件名是 document/Untitled 并且文件格式会自动更改。
ib1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("android.resource://com.raj.ankit.playbtntry111/" + R.raw.b1)); //myuri
shareIntent.setType("audio/mp3");
startActivity(Intent.createChooser(shareIntent, "Share sound"));
}
});