Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试为来自 url 的流式歌曲设置倒数计时器。倒数计时器正在工作,但是当由于互联网速度慢而没有缓冲数据时,倒数计时器不会停止。如果有人对此有任何想法,请帮助我。谢谢。
您可以像这样获得媒体播放器的总持续时间和当前持续时间
long totalDuration = mediaPlayer.getDuration()/1000; // converted to seconds long currentDuration = mediaPlayer.getCurrentPosition()/1000;
并获得倒数计时器,您可以使用它
long counDown = currentDuration - totalDuration ;
希望这对您有所帮助。