我有一个应该在后台上传照片的服务。但是当我尝试启动它时,它并没有启动。在logcat中,我注意到我收到警告ImplicitintentswithstartServicearenotsafe:Intent{.....}。我已经三次检查list中的操作字符串是否与我开始的内容相同。我的代码:list:开始服务代码:Intenti=newIntent(PhtosUploadService.ACTION_START_UPLOAD);i.putExtra(PhtosUploadService.ALBUM_ID,albumID);context.startService(i);