I am currently writing an app that needs to be able to play audio. As i want the audio to continue playing when the user leaves the app, i am using an IntentService to handle the play method.
My problem is that i need to be able to update the applications UI, such as a progress bar showing how much is remaining of the audio, using data from the intentservice.
I was just wondering what the best way of achieving this would be? I have googled this, but all the guides seem to be for AsyncTask or just standard services.
Thanks heaps to anyone who can help.
Cheers Corey