Usually on the Android OS when something is touched like a button or list item it makes a touch tone or sound. I have a custom made AdapterView (DevsmartLib) that basically creates a horizontal list view for me, however, none of the items make sounds when touched. I'm wondering if anyone knows what settings or options control whether a touch ends up triggering a sound or not. Any help or pointers are highly appreciated.

Thanks, Harry

link|improve this question

71% accept rate
feedback

1 Answer

I think this SO-thread answers your questions.

You can use the xml attribute soundEffectsEnabled, or its corresponding java method, and after that you can play sound effects using Sound Effect Constants in the playSoundEffect method. This could also be done with MediaPlayer, but I don't think that's the kind of sound you want.

This developer page on multimedia might help if you want other kinds of sound.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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