我试图更改此项目Media player的某些功能,以便从原始文件夹而不是SD卡中读取mp3。但是它给我一个错误"尝试在没有有效媒体播放器的情况下调用getDuration"请问任何建议?
public void playSong(int songIndex){ // parameter is not used. is set static content
try {
mp.reset();
mp = mp.create(this, R.raw.ledzepellin); // static content!
mp.prepare();
mp.start();
String songTitle = "title";
songTitleLabel.setText(songTitle);
songProgressBar.setProgress(0);
songProgressBar.setMax(100);
updateProgressBar();
} catch (IllegalArgumentException e) {
e.printStackTrace();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
public void updateProgressBar() {
mHandler.postDelayed(mUpdateTimeTask, 100);
}
private Runnable mUpdateTimeTask = new Runnable() {
public void run() {
long totalDuration = mp.getDuration(); // ---- HERE IT GIVE ME ERROR
long currentDuration = mp.getCurrentPosition();
songTotalDurationLabel.setText(""+utils.milliSecondsToTimer(totalDuration));
songCurrentDurationLabel.setText(""+utils.milliSecondsToTimer(currentDuration));
int progress = (int)(utils.getProgressPercentage(currentDuration, totalDuration));
songProgressBar.setProgress(progress);
mHandler.postDelayed(this, 100);
}
};
这里我开始播放playSong方法它首先打开我的可用歌曲的列表视图,当我选择ti给我回来的结果额外的但其不重要的原始来源是静态设置
btnPlaylist.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
Intent i = new Intent(getApplicationContext(), PlayListActivity.class);
startActivityForResult(i, 100);
}
});
}
@Override
protected void onActivityResult(int requestCode,
int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if(resultCode == 100){
currentSongIndex = data.getExtras().getInt("songIndex");
playSong(currentSongIndex);
}
}
答案 0 :(得分:2)
您正在调用的静态create
方法的文档说:
成功时,prepare()已经被调用,不能再被调用。
是否没有其他错误打印到logcat?您可以考虑使用setOnErrorListener
添加错误侦听器,还可以查看状态图here。在MediaPlayer
空闲或处于错误状态时,不应调用大多数方法。在你的情况下,我认为它在prepare()
之后已进入错误状态,并且从那时起应该引起问题。