gpt4 book ai didi

android - 使用 Android 应用程序启动应用程序或文件

转载 作者:搜寻专家 更新时间:2023-11-01 07:40:24 25 4
gpt4 key购买 nike

如何使用我的 Android 应用程序启动进程?我想启动默认音乐播放器来播放选定的歌曲。我可以在我自己的应用程序中播放这首歌,但我想让默认播放器播放这首歌。我将如何去做这件事?

谢谢。这就是我使用您的示例所做的工作。

Intent intent = new Intent(android.content.Intent.ACTION_VIEW); 
Uri data = Uri.parse("file://" + pathtofile);
intent.setDataAndType(data,"audio/mp3");
try {
startActivity(intent);
} catch (ActivityNotFoundException e) {
e.printStackTrace();
}

最佳答案

尝试使用 ACTION_VIEW:

Uri myResourceToPlay = new Uri(...);
Intent playIntent = new Intent(Intent.ACTION_VIEW, myResourceToPlay);
startActivity(playIntent);

关于android - 使用 Android 应用程序启动应用程序或文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4684508/

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