Skip to content

Instantly share code, notes, and snippets.

@suminb
Created September 18, 2012 00:02
Show Gist options
  • Save suminb/3740516 to your computer and use it in GitHub Desktop.
Save suminb/3740516 to your computer and use it in GitHub Desktop.
Playing notification sound in Android
@Override
protected void onResume() {
super.onResume();
Uri alert = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
MediaPlayer mp = MediaPlayer.create(this, alert);
mp.start();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment