This code is not working after one time. After clicking it once it stops the music but after clicking it again it is not starting the music again.
ToggleButton sound;
MediaPlayer sip;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
sound = (ToggleButton) findViewById(R.id.Sound1);
sip = MediaPlayer.create(Naruto.this, R.raw.sip2);
sip.start();
sound.setOnClickListener(new View.OnClickListener() {
public void onClick(View arg0) {
if (sound.isChecked() == true) {
sip.start();
} else {
sip.start();
}
}
});
}