Re: [android-developers] Register a service with Android framework

2009-12-05 Thread Dianne Hackborn
A third party app can't do that. As the name says, getSystemService() is for system services only. On Sat, Dec 5, 2009 at 5:33 AM, Bharath wrote: > > Hi > > I have a question regarding services. > In Android I am able to use all the methods defined in the service by > calling bindService(). > I

[android-developers] Register a service with Android framework

2009-12-05 Thread Bharath
Hi I have a question regarding services. In Android I am able to use all the methods defined in the service by calling bindService(). In bindService() we have to pass the ServiceConnection object and could able to get the reference of Service Interface through which we can invoke service methods.