从android中的服务类启动服务

时间:2015-03-26 16:18:53

标签: android android-intent android-service

是否可以从其他服务类启动服务类?

 Intent localIntent =  new Intent("com.example.android");
                startService(localIntent);

我已经尝试过上面的代码,但我觉得它不起作用。

1 个答案:

答案 0 :(得分:0)

  

是否可以从其他服务类启动服务类?

AFAIK,您可以从任何Context开始提供服务。

  

我已经尝试过上面的代码,但我觉得它不起作用。

好吧,希望您的服务没有<intent-filter>的动作字符串com.example.android。使用明确的Intent来标识您的服务(例如new Intent(this, YourServiceClass.class);)。