MediaPlayer class can be used to control playback
of audio/video files and streams.
keep the
intro.mp3 file in
raw folder in
res
MediaPlayer mp = MediaPlayer.create(getApplicationContext(), R.raw.intro);
mp.start();
mp.pause();// To pause / Stop music