Android Media Player play/pause Button

前端 未结 7 1387
孤独总比滥情好
孤独总比滥情好 2020-12-24 13:03

In my project, I am playing music file in android media player by using the following code

MediaPlayer mPlayer = MediaPlayer.create(MyActivity.this, R.raw.my         


        
7条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-24 13:15

    For pausing the Mediaplayer:

    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();
    

提交回复
热议问题