android - How can I disable clicking sound for Action Menu button? -
seems straight forward, can't find in documentation how disable sound (water drop sound) plays when click button.
the reason important, button records audio. , when play audio, can hear button clicking.
thanks
you can using attribute in xml:
android:soundeffectsenabled="false"
or in code by:
btn.setsoundeffectsenabled(false);
Comments
Post a Comment