If I start sound playback and immediately hit the back button and close that activity, the sound-pool completes the sound. How can I finish the sound-pool as soon as I hit the back button?
try this on your code,
@Override
public void onBackPressed() {
super.onBackPressed();
soundpoolobject.stop();
}