Hello everyone, tell me how to remove the button click sound in the application. By pressing, a sound (of a certain frequency) is played, but each button press adds its own (not needed) sound.
I tried through:
audioManager =(AudioManager)getSystemService(Context.AUDIO_SERVICE); audioManager.setStreamMute(AudioManager.STREAM_SYSTEM, true); But it turns off all the sound. How exactly to register for a button?