Lore
Lore

Reputation: 1

Sound settings in Android

I would like to reach the sound settings and get change the volume. How can i do that by code?

Thanks..

Upvotes: 0

Views: 754

Answers (2)

Omar Abdan
Omar Abdan

Reputation: 1975

you can find all system settings in this cursor:

Cursor Settingscursor = mContext.getContentResolver().query(Settings.System.CONTENT_URI, null, null, null, null);

Upvotes: 2

Will Tate
Will Tate

Reputation: 33509

Lore,

You want AudioManager.adjustVolume().

Upvotes: 0

Related Questions