I\'m writing my first Android application and trying to get my head around communication between services and activities. I have a Service that will run in the background an
Another way could be using observers with a fake model class through the activity and the service itself, implementing an MVC pattern variation. I don't know if it's the best way to accomplish this, but it's the way that worked for me. If you need some example ask for it and i'll post something.