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

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

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

5条回答
  •  伪装坚强ぢ
    2021-01-30 18:12

    Solution:

    AudioManager audio_mngr = (AudioManager) getBaseContext().getSystemService(Context.AUDIO_SERVICE);
    audio_mngr .setRingerMode(AudioManager.RINGER_MODE_SILENT);
    

提交回复
热议问题