Open GoogleCodeExporter opened 9 years ago
Right :(
On ICS when you mute the phone, there is no beep but on GB i don't think there
is a way to remove it
Original comment by FyHertz
on 28 Jun 2012 at 12:07
I've used the following to disable the beep sound when the camera starts
private void setMuteAll(boolean mute) {
AudioManager manager = (AudioManager) getSystemService(Context.AUDIO_SERVICE);
int[] streams = new int[] { AudioManager.STREAM_ALARM, AudioManager.STREAM_DTMF, AudioManager.STREAM_MUSIC, AudioManager.STREAM_RING, AudioManager.STREAM_SYSTEM,
AudioManager.STREAM_VOICE_CALL };
for (int stream : streams)
manager.setStreamMute(stream, mute);
}
I call this in onResume and onPause
Original comment by richluca...@gmail.com
on 12 Apr 2013 at 8:40
Original issue reported on code.google.com by
amitaymo...@gmail.com
on 27 Jun 2012 at 5:41