Android 調用内置的音樂播放器

Intent intent = new Intent(Intent.ACTION_VIEW);
String path = Environment.getExternalStorageDirectory().getPath() + "/Music/Download/再见-张震岳.mp3";
File audioFile = new File(path);
intent.setDataAndType(Uri.fromFile(audioFile), "audio/mp3");
startActivity(intent);

你可能感兴趣的:(Android 調用内置的音樂播放器)