我的问题是,如果 mp3 已经在播放,你如何关闭 ProgressDialog?
请检查我到目前为止尝试过的内容:
mediaPlayer.setDataSource(timelessFuture);
mediaPlayer.prepare();
// gets the song length in milliseconds from URL
mediaFileLengthInMilliseconds = mediaPlayer.getDuration();
progressDialog = ProgressDialog.show(this, "Downloading", "Please wait while podcast is being downloaded...");
if(!mediaPlayer.isPlaying()){
mediaPlayer.start();
play.setCompoundDrawablesWithIntrinsicBounds(R.drawable.button_pause, 0, 0, 0);
} else {
mediaPlayer.pause();
play.setCompoundDrawablesWithIntrinsicBounds(R.drawable.button_play, 0, 0, 0);
}
primarySeekBarProgressUpdater();
我在这里缺少什么?