media player play pause in android

后端 未结 2 1762
暖寄归人
暖寄归人 2021-01-20 15:46

How can I make the Play and Pause image buttons look as a single image button. I am hereby attaching my code below. These are the images used. i Renamed play as start.

2条回答
  •  借酒劲吻你
    2021-01-20 16:21

    You can use the following code:

    if(!mp.isPlaying() || isCompleted) {
      isCompleted = false;
      mp.start();
    } else {
      mp.pause();
    }
    

    add a variant:

    private boolean isCompleted = true;
    

    add listener:

    mp.setOnCompletionListener(new OnCompletionListener(){
    
            @Override
            public void onCompletion(MediaPlayer mp) {
                // TODO Auto-generated method stub
                isCompleted = true;
            }}
        );
    

提交回复
热议问题