How do I access the public methods that I have defined (not the overridden ones) in the MediaBrowserServiceCompat from an activity?
Earlier I had used just the service, so I could bind it with the activity class and then access the methods easily.
Now since no binder is returned (onBind is not overriden in mediaBrowserService) , how can that be done?
(I have also read from ianblake's blog that mediaBrowserService is automatically bound...is that useful here?)