问题 I'm using SpeechRecognizer API for my app, and everytime it starts, it plays "beep" sound. I'd like to know how to mute it, So I could implement one of my own. Thanks. 回答1: If you are using a button to activate and deactivate the recognizer you can mute sound onclick. This doesnt work fantastically if you have it listening constantly, however for button clicks it should be fine :) private AudioManager manager; manager = (AudioManager) getSystemService(Context.AUDIO_SERVICE); if (isChecked) {