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

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

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

5条回答
  •  离开以前
    2021-01-30 18:17

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

提交回复
热议问题