I'm new to Android programming, so I'm facing some general problems about choosing the best way to design my app.
What I want to do is basically a media player. I want the media player to run on a service because I want it to play also when the activity is not displayed.
My question is, how can I update the UI on my activity depending on the service working flow (for example, the song changes and I want its name to be displayed)?
I guess I could use a Local Broadcast Manager in order to send intents from my service to my activity and invoke UI updates (does it seem right?)
BUT... I will want my service to do some stuff while playing music (like querying/updating the DB). For this reason I was thinking on running the service on a different process (or thread?).
SO.. I guess, running service on a different process, I won't be able to use local broadcast manager (is this right?).
I hope I explained what are my doubts... anyone can help?
thanks a lot!