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.
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;
}}
);