I am creating a app, where activity move will in the next activity after play a audio clip. but when i wrote the code only audio part is working, next page not coming. i am giving my code. please see image for my codes.
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.foood);
ImageButton btnbreakfast = (ImageButton) findViewById(R.id.breakfast);
btnbreakfast.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View V) {
MediaPlayer audio = MediaPlayer.create(Food.this, R.raw.vada);
audio.start();
}
});
}
public void audio() {
Intent intent = new Intent(Food.this, breakfast.class);
startActivity(intent);
}