我需要使用Android SDK播放长音频文件。我知道Android提供的MediaPlayer框架,但我想知道是否可以调用内置的“音乐播放器”应用程序,因此我不必编写自己的播放器GUI和代码。
答案 0 :(得分:4)
是的,你可以。
设置这样的意图:
act=android.intent.action.VIEW dat=file:///mnt/sdcard/song_name.mp3 typ=audio/mpeg3
行动:VIEW
Intent intent = new Intent(Intent.ACTION_VIEW); intent.setDataAndType(Uri .parse("file:///mnt/sdcard/song_name.mp3"), "audio/mpeg3"); startActivity(intent);