vizzz
vizzz

Reputation: 37

Enable selection sound in settings

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

Answers (1)

Vikalp Patel
Vikalp Patel

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

Related Questions