Open Sound Settings
com.roozen.intent.SOUND_CONTROL
Brings user to a sound control screen where user can modify a number of different sound settings.
Use
public void startOpenSoundSettings() {
    Intent intent = new Intent("com.roozen.intent.SOUND_CONTROL"); 
    if (intent.resolveActivity(getPackageManager()) != null) { 
        startActivity(intent);
    }
}Example intent filter
<activity ...>
    <intent-filter>
        <action android:name="com.roozen.intent.SOUND_CONTROL" />
        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
</activity>
            Apps Providing an Implementation
Search on Google Play, AppBrain, Amazon App store or similar (not yet available - please make this happen!)