Reputation: 37
How can I enable/Disable the selection sound in our phone default settings programmatically.(Like button click,layout click sound etc)guyyzz help...
Upvotes: 0
Views: 1521
Reputation: 10887
<uses-permission android:name="android.permission.WRITE_SETTINGS"/>
To Disable Sound Effects putInt()
Settings.System.putInt(getContentResolver(), Settings.System.SOUND_EFFECTS_ENABLED, 0); //To disable
To Enable Sound Effects
Settings.System.putInt(getContentResolver(), Settings.System.SOUND_EFFECTS_ENABLED, 1); //To Enable
Upvotes: 3