gpt4 book ai didi

android - 共享文件到邮件时更改附件名称

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:26:23 24 4
gpt4 key购买 nike

我正在使用此代码共享文件:

Uri fileUri = Uri.fromFile(new File(filePath));
Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.setType("audio/mp3");
shareIntent.putExtra(Intent.EXTRA_SUBJECT, "subject");
shareIntent.putExtra(Intent.EXTRA_TEXT, "body");
shareIntent.putExtra(Intent.EXTRA_STREAM, fileUri);
startActivity(Intent.createChooser(shareIntent, "Share"));

文件名为:“a123456789cd.mp3”。我无法更改实际文件名,因此我只需要在附件中将其更改为有意义的名称,例如:“myRecording.mp3”。那可能吗 ?

谢谢你的帮助

最佳答案

考虑到 android 如何处理应用程序中的资源,似乎没有简单的解决方法。看到这个答案:Email attachment send by app has different name than file that is sent

关于android - 共享文件到邮件时更改附件名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22109298/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com