Android在预设间隔后停止播放音乐

时间:2013-08-21 07:47:47

标签: timer android-music-player

我需要允许用户在预设时间后停止播放音乐。 当用户输入新活动时,我会以循环声音启动播放器。但是我想让声音在一段时间后自动停止。 我在活动的创建上使用此代码:

final MediaPlayer mp = MediaPlayer.create(getBaseContext(),R.raw.mysound);
mp.setLooping(true);
mp.start(); 

音乐开始并永不停止......这不是我想要的。 说... 70秒后如何停止音乐?

谢谢

1 个答案:

答案 0 :(得分:0)

您可能希望使用服务启动和停止播放器。

Here is a tutorial that might be useful.

You can read more about services here.