如何恢复媒体播放器?媒体播放器

2023-09-12 23:06:24 作者:我只有孤独

我使用的是媒体播放器。

I am using a media player.

我有启动,停止和暂停的球员选项。我的问题是,我无法找到从它previously暂停..点恢复播放曲目的选择

I have the option for starting ,stopping and pausing the player. The problem I have is that I cannot find the option to resume the song from the point that it previously was paused..

任何帮助提供将是非常有益的。

Any help provide would be really helpful.

推荐答案

感谢您的关注,但我有我自己

Thank you for your attention but I've got it myself

有关暂停媒体播放器我用:

for pausing the Mediaplayer I used:

Mediaplayer.pause();
length=Mediaplayer.getCurrentPosition();

和从停止的地方,最近被完成的位置恢复播放器:

and for resuming the player from the position where it stopped lately is done by:

Mediaplayer.seekTo(length);
Mediaplayer.start();