I'd like to set the ringer mode to silent for specific events in the future. It should only happen if a checkbox in the preferences is checked. I know that I have to update the manifest for the permissions and also that I can set the ringer mode with something like this:

if (getPreferences(MODE_PRIVATE).getBoolean(PREFS_KEY_SILENTOPTION, false)) {
   AudioManager audioManager = (AudioManager) getSystemService(AUDIO_SERVICE);
   audioManager.setRingerMode(AudioManager.RINGER_MODE_SILENT);
}

But how can I set (and reset) it for a space of time in the future?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Check out the AlarmManager. It allows you to "schedule your application to be run at some point in the future".

link|improve this answer
Here's a tutorial I found that explains how to use the AlarmManager: justcallmebrian.com/?p=129 – Colin O'Dell Nov 9 '10 at 19:43
I'll have a look, thanks! – cody Nov 9 '10 at 21:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.