I've created a service that sends location in back ground now
i want to create a method in my ACTIVITY which will access the currently running instance of service and will call its method
Say Location Service having Methode
SendLocation()
{
/// to do
}
Now in Activity A:
Service s = getCurrentRunningServiceInstance // something like this
and call its method
s.SendLocation();