我正在尝试启动音乐播放器,以便它启动并立即开始播放第一首歌曲。我正在使用 Intent,但它不起作用......它说“没有找到处理意图的活动”。
Intent intent = new Intent(android.content.Intent.ACTION_VIEW);
//"songsList" is an array with paths of all the songs in the sdcard
Uri uri = Uri.parse(songsList.get(0));
String type = "audio/mp3";
intent.setDataAndType(uri, type);
startActivity(intent);