Reputation: 1
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
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