我正在尝试启动服务。此服务不应由其他应用程序调用。
我正在尝试使用使用Context和Class参数创建的Intent来调用startService
。我正在尝试使用createPackageContext(getPackageName(), CONTEXT_IGNORE_SECURITY)
来获取包上下文。 startService
但是没有效果,onStartCommand
永远不会被调用。
如何启动同一个软件包内的服务?
答案 0 :(得分:1)
如何启动同一个软件包内的服务?
startService(new Intent(this, MyServiceClass.class));