I researched a little bit, but couldn\'t find any solutions to this problem: I would like to play a MediaPlayer and pause/stop it at a given time.. (ie: play from s
MediaPlayer
You can use CountDownTimer
new CountDownTimer(30000, 1000) { public void onTick(long millisUntilFinished) { } public void onFinish() { mp.stop; mp.relese(); } }.start();