试图开始私人服务

时间:2012-02-14 20:49:04

标签: android android-intent android-service

我正在尝试启动服务。此服务不应由其他应用程序调用。

我正在尝试使用使用Context和Class参数创建的Intent来调用startService。我正在尝试使用createPackageContext(getPackageName(), CONTEXT_IGNORE_SECURITY)来获取包上下文。 startService但是没有效果,onStartCommand永远不会被调用。

如何启动同一个软件包内的服务?

1 个答案:

答案 0 :(得分:1)

  

如何启动同一个软件包内的服务?

startService(new Intent(this, MyServiceClass.class));