Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to make a beep on errors.

I found:

ToneGenerator tone = new ToneGenerator(AudioManager.STREAM_MUSIC, 50);

with:

tone.startTone(ToneGenerator.TONE_CDMA_ABBR_ALERT);

and I tried various other streams.

But I don't hear nothing.

Do I have to set permissions? And if so, which one?

Thanks

share|improve this question

1 Answer

I did it!

With STREAM_ALARM and TONE_PROP_BEEP

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.