28

Is it possible to turn off the silent mode programmatically in Android?

Willi Mentzel
  • 24,988
  • 16
  • 102
  • 110
whiteberryapps
  • 1,372
  • 4
  • 15
  • 20
  • @Mat, well, that question was for iPhone, this is for android. I doubt the answers to that question is helpful to the op. – aioobe Jul 28 '12 at 08:57

5 Answers5

66

Solution for you .

AudioManager am;
am= (AudioManager) getBaseContext().getSystemService(Context.AUDIO_SERVICE);

//For Normal mode
am.setRingerMode(AudioManager.RINGER_MODE_NORMAL);

//For Silent mode
am.setRingerMode(AudioManager.RINGER_MODE_SILENT);

//For Vibrate mode
am.setRingerMode(AudioManager.RINGER_MODE_VIBRATE);
Chirag
  • 56,384
  • 29
  • 154
  • 197
9
//SilentToNomal and NormalToSilent device Programatically
 final AudioManager mode = (AudioManager) this.getSystemService(Context.AUDIO_SERVICE);
//Silent Mode Programatically
mode.setRingerMode(AudioManager.RINGER_MODE_SILENT);

//Normal Mode Programatically
  mode.setRingerMode(AudioManager.RINGER_MODE_NORMAL);
patel
  • 810
  • 1
  • 11
  • 25
6

Solution:

AudioManager audio_mngr = (AudioManager) getBaseContext().getSystemService(Context.AUDIO_SERVICE);
audio_mngr .setRingerMode(AudioManager.RINGER_MODE_SILENT);
Paresh Mayani
  • 125,853
  • 70
  • 238
  • 294
  • how to make it reverse, after silent mode how to set back to normal mode. – sandy May 07 '13 at 10:43
  • @sandy try RINGER_MODE_NORMAL (http://developer.android.com/reference/android/media/AudioManager.html#RINGER_MODE_NORMAL) for it? – Aman Alam Oct 05 '14 at 08:02
0

Yes this is possible to turn off and on the silent mode programmatically below is the code :

AudioManager audioManager = (AudioManager) getSystemService(AUDIO_SERVICE);

for setting silent mode :

audioManager.setRingerMode(AudioManager.RINGER_MODE_SILENT);

For normal mode :

audioManager.setRingerMode(AudioManager.RINGER_MODE_NORMAL);
Antonio Pérez
  • 6,432
  • 4
  • 29
  • 57
Arun kumar
  • 1,864
  • 3
  • 21
  • 27
0
int normal = 2;
int vibrate = 1;
int silent = 0;
int RingerMode;
public static AudioManager AUDIOMANAGER;

@Override
public void onCreate() {
    super.onCreate();

    AUDIOMANAGER= (AudioManager) getBaseContext().getSystemService(Context.AUDIO_SERVICE);
    if (AUDIOMANAGER.getRingerMode() == normal) {
                    AUDIOMANAGER.setRingerMode(AudioManager.RINGER_MODE_SILENT);
                    RingerMode = normal;
    } else if (AUDIOMANAGER.getRingerMode() == vibrate) {
                    AUDIOMANAGER.setRingerMode(AudioManager.RINGER_MODE_SILENT);
                    RingerMode = vibrate;
                }
    //And after do all your jobs..... you can return to previous mode:
                    AUDIOMANAGER.setRingerMode(RingerMode);

}
Iman Marashi
  • 5,207
  • 34
  • 50