Moreover, according to this answer, it would be better to replace your while(true) loop with:public void run() { seekBar.setProgress(mp.getCurrentPosition()); if (mp.getCurrentPosition() < mp.getDuration()) { seekBar.postDelayed(this, MILLISECONDS); }} 这篇关于当seekBar更新Android的MediaPlayer视频不流畅时的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 07-30 22:58