Saturday, 6 April 2013

Android Devices How to enable and disable the silent mode?


You can use the AudioManager to enable and disable silent mode. 


mAudio = (AudioManager) getSystemService(Activity.AUDIO_SERVICE);
mAudio.setRingerMode(AudioManager.RINGER_MODE_SILENT);
// or...
mAudio.setRingerMode(AudioManager.RINGER_MODE_NORMAL);

No comments:

Post a Comment

Disqus for Android