且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

在默认音乐播放器上播放歌曲-Android

更新时间:2023-09-22 09:45:10

如果您要在设备上启动默认的音乐播放器应用,请尝试以下操作:

If you would like to start the default music player app on the device, should try this:

Intent intent = new Intent();  
intent.setAction(android.content.Intent.ACTION_VIEW);  
File file = new File(YOUR_SONG_URI);  
intent.setDataAndType(Uri.fromFile(file), "audio/*");  
startActivity(intent);