为了启动一个Service,调用startService;你可以使用动作来隐式启动一个已经注册的Service,或者显式的指定Service启动。
如果你的程序没有Service所需的权限,那么,这个调用会抛出一个SecurityException。下面的片段显示了两种启动Service的技巧:
// Implicitly start a Service
startService(new Intent(MyService.MY_ACTION));
// Explicitly start a Service
startService(new Intent(this, MyService.class));
为了使用这个例子,你需要在MyService类中包含一个MY_ACTION属性,并且使用一个Intent Filter来注册它,作为MY_ACTION的一个Provider。
为了停止一个Service,使用stopService,传入一个要停止的Service的Intent。下面的代码片段首先启动一个Service,然后使用startService返回的组件名来停止一个Service:
ComponentName service = startService(new Intent(this, BaseballWatch.class));
// Stop a service using the service name.
stopService(new Intent(this, service.getClass()));
// Stop a service explicitly.
try
{
Class serviceClass = Class.forName(service.getClassName());
stopService(new Intent(this, serviceClass));
}
catch (ClassNotFoundException e){}
如果在已经运行的Service上再次调用startService的话,Service的onStart方法会再次执行。startService的调用不需要配对,所以,一次stopService的调用可以停止调用很多次startService的Service。