我们可以从应用程序类启动一个服务吗?
我想在我的应用程序启动时启动一项服务。因此,我可以使用我的应用程序类来代替从启动活动启动服务吗?谢谢。
我尝试的是内部应用程序类:
public void onCreate() {
super.onCreate();
Log.i("Logger", "Service Starting");
Intent errorLoggerService = new Intent(getApplicationContext(),
ErrorLoggerService.class);
getApplicationContext().startService(errorLoggerService);
}