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

后端 未结 5 1025
轮回少年
轮回少年 2021-01-30 17:45

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

5条回答
  •  死守一世寂寞
    2021-01-30 18:26

    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);
    

提交回复
热议问题