Set Media Left/right Volume Separately?
I would like to override the media left and right volume setting separately as a whole. It does not seem possible to set the left and right volume separately using AudioManager.set
Solution 1:
Left / right volume adjustment for system / user is not available in the public API. It's only only available on app level, using the methods you mentioned.
Solution 2:
You can set the right and left volume with this 2nd and 3 parameter: SoundPool, developer.android.com
Post a Comment for "Set Media Left/right Volume Separately?"