Android Media Player play/pause Button

前端 未结 7 1491
孤独总比滥情好
孤独总比滥情好 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:24

    You could use simple if-check to handle the pausing. Try this:

    if(mPlayer.isPlaying()){
        mPlayer.pause();
    } else {
        mPlayer.start();
    }
    

提交回复
热议问题