是否可以从其他服务类启动服务类?
Intent localIntent = new Intent("com.example.android");
startService(localIntent);
我已经尝试过上面的代码,但我觉得它不起作用。
答案 0 :(得分:0)
是否可以从其他服务类启动服务类?
AFAIK,您可以从任何Context
开始提供服务。
我已经尝试过上面的代码,但我觉得它不起作用。
好吧,希望您的服务没有<intent-filter>
的动作字符串com.example.android
。使用明确的Intent
来标识您的服务(例如new Intent(this, YourServiceClass.class);
)。