我的目录中已经有一个 .wav 文件。同时我需要将它与一个 mp3 文件一起播放。我用了,
String recordedFile = "/storage/sdcard0/PINOYKARAOKE/1373597371359.wav";
MediaPlayer recordedSong = new MediaPlayer();
try{
recordedSong = MediaPlayer.create(ctx, Uri.fromFile(recordedFile));
recordedSong.prepare();
recordedSong.start();
}
catch(Exception e){
}
错误:创建失败并抛出 IOException