I need to call setVolumeControlStream from a service that plays some sound via STREAM_SYSTEM.
Obviously in an Activity that is no problem, but how can I do this with a service?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
From the looks of it, this isn't possible the way you are trying to do it. As said in the android reference
Hence with a service that has no activity, there is no window to tie the audio stream to. However, It looks like you should be able to receive media key events (including volume keys) from a broadcaster as shown here which would allow you to change your service volume without an activity being visible. |
|||||||||
|
|
I think this library can provide you what you need: |
|||
|
|
|
all you can do is just create an object of an Actvity , preferable the Activty from which service starts and use act = new MainActivity(); act.setVolumeControlStream(MYSTREAM); I hope this might help you. |
|||
|