我有一个不同声音的应用程序。我想与文字一起分享声音(音频)。
如果我只分享一个声音,它会起作用:
share.putExtra(Intent.EXTRA_STREAM, Uri.parse(Environment.getExternalStorageDirectory().toString() + "/audio.mp3"));
share.setType("audio/mp3");
startActivity(Intent.createChooser(share, "Share via..."));
现在我尝试添加一个文本:
share.putExtra(Intent.EXTRA_STREAM, Uri.parse(Environment.getExternalStorageDirectory().toString() + "/audio.mp3"));
share.setType("audio/mp3");
sharetext.putExtra(Intent.EXTRA_TEXT,"This should be under the audio file after sharing");
startActivity(Intent.createChooser(share, "Share via..."));
但仍然只有音频被共享。
它是如何工作的?如果这是不可能的,还有其他方法可以做到这一点吗?非常感谢!:)