Is there a way in Android (starting with API 8) to create a service that will listen to MediaStore updates, so on that it, will notify the app to do something with the new content.
I know how to make a Service. But I've bin looking for an example with such a listener, and found only a solution with sendBroadcast(). But I don't want every time to update (explicit) the MediaStore, just a listener that could wait for an update notification.
Is there such a possibility? (Or, may be, my question is not quite right).