我有一个应用程序,通过WhatsApp,电子邮件等共享音频文件。我的代码适用于单个文件,但它不能同时用于两个或多个文件。 这是我的代码:
Intent intent = new Intent(Intent.ACTION_SEND).setType("audio/*");
for (i=0;i<completepath.size();i++)
{
File send=new File(completepath.get(i));
intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(send));
}
startActivity(Intent.createChooser(intent, "Send audio "));
答案 0 :(得分:0)
您可以在documentation内使用Intent.ACTION_SEND_MULTIPLE
的额外发送命令。
这个here让我们了解了从另一个相关职位使用意图背后的过程。