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

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

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

5条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-30 18:26

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

提交回复
热议问题