在安卓系统中重新启动服务



在android应用程序中,如果我保存正在运行的服务的意图。如何重新启动服务?我希望它再次运行onStartCommand函数。

感谢

使onStartCommand返回START_STICKY

public int onStartCommand(Intent intent, int flags, int startId){
   super.onStartCommand(intent, flags, startId);
   return  START_STICKY; 
}

文档链接:http://developer.android.com/reference/android/app/Service.html

相关内容

  • 没有找到相关文章

最新更新