gpt4 book ai didi

Android使用 Intent 启动音乐播放器

转载 作者:IT王子 更新时间:2023-10-29 00:10:29 25 4
gpt4 key购买 nike

是否可以从我的 android 应用程序中打开音乐应用程序,或者最好在我的内部编写一个全新的音乐应用程序。我宁愿使用他们的,因为用户已经习惯了。

最佳答案

我找到了一种方法来做到这一点。

Intent intent = new Intent();  
intent.setAction(android.content.Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse(YOUR_SONG_PATH), "audio/*");
startActivity(intent);

关于Android使用 Intent 启动音乐播放器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3114471/

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