我需要你的帮助。 我正在开发一个Android应用程序,我需要从SD卡播放一首随机歌曲。我试过这种方式:
使用此方法,我会从文件夹sdcard/Music
中随机选择一首歌曲(此文件夹仅包含mp3文件)。
public File chooseSong()
{
Random r=new Random();
File path=new File("/sdcard/Music");
File[] songsList=path.listFiles();
int index=(r.nextInt(songsList.length));
Toast.makeText(Main.this, "Song extract "+songsList[index],Toast.LENGTH_SHORT).show();
return songsList[index];
}
然后我用这个方法播放提取的歌曲:
public void play()
{
Toast.makeText(Main.this, "in method play() ", Toast.LENGTH_SHORT).show();
try
{
File f=chooseSong();
String path=f.getPath();
mpSong = new MediaPlayer();
mpSong.setDataSource(path);
mpSong.prepare(); //i think the problem is here, i receive "failed to prepare status 0x1"
mpSong.start();
Toast.makeText(Main.this, "Playing", Toast.LENGTH_SHORT).show();
}
catch(Exception e)
{
e.printStackTrace();
Toast.makeText(Main.this, "error", Toast.LENGTH_SHORT).show();
}
}
我想知道如何使用MediaPlayer从智能手机的SD卡播放歌曲