How to mute camera shutter sound on android phone

前端 未结 5 1314
春和景丽
春和景丽 2020-12-14 02:33

Is there any way to mute the camera shutter sound in Android (not rooted phone)?

I use this code to mute my audio sound when taking picture:

  AudioM         


        
5条回答
  •  天涯浪人
    2020-12-14 03:06

    try this code:

    AudioManager manager = (AudioManager) getSystemService(Context.AUDIO_SERVICE);
    if(TextUtils.equals(muteMode, "mute")){
        manager.setStreamVolume(AudioManager.STREAM_SYSTEM, 0 , AudioManager.FLAG_REMOVE_SOUND_AND_VIBRATE);
    }else{
        manager.setStreamVolume(AudioManager.STREAM_SYSTEM, manager.getStreamMaxVolume(AudioManager.STREAM_SYSTEM) , AudioManager.FLAG_ALLOW_RINGER_MODES);
    }
    //here continue to take picture...
    

    do not use AudioManager.setStreamMute() method since there is a known issue on android below version 2.3..

提交回复
热议问题