Guest User

Untitled

a guest
Sep 28th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. mediaPlayer.start();
  2. CountDownTimer timer = new CountDownTimer(5000, 1000) {
  3.  
  4. @Override
  5. public void onTick(long millisUntilFinished) {
  6. // Nothing to do
  7. }
  8.  
  9. @Override
  10. public void onFinish() {
  11. if ( mediaPlayer.isPlaying()) {
  12. mediaPlayer.stop();
  13.  
  14. }
  15.  
  16. }
  17. };
  18. timer.start();
Add Comment
Please, Sign In to add comment