I need to add background music to my android application. I have declared the MediaPlayer object as a class variable and create it inside oncreate(). I have start the MediPlayer object also inside the oncreate(). I have stop the media player in a button click method which starts a new intent. My requirement is to play the music when starts the layout and stop it when starts the next layout, but now it starts more than once and won't stop. Here is my code.
MediaPlayer startMusic;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_cover);
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
startMusic= MediaPlayer.create(Cover.this, R.raw.startgame);
if(!(startMusic.isPlaying()))
{
startMusic.start();
}
}
public void btnStartClick(View v)
{
startMusic.pause();
Intent intent = new Intent(this,ScaleExercise.class);
startActivity(intent);
}
Can someone please tell me whats wrong here(ASAP). Thankyou
Try this