SoundPool
SoundPool mSoundPool = new SoundPool.Builder()
.setAudioAttributes(mAudioAttributes)
.setMaxStreams(MAX_SOUND_STREAMS)
.build();
int loadedSoundId = mSoundPool.load(audioFilePath, 1);
mSoundPool.play(loadedSoundId,
volumeToPlaySound, volumeToPlaySound,
REGULAR_PRIORITY_SOUND, NO_LOOP, DEFAULT_PLAYBACK_RATE);