我正在开发一个简单的小部件,它通过下载一个大图像文件来更新。为此,我只是启动了一项检索图像的服务。我从AppWidgetProvider的onUpdate方法启动它。像那样:publicvoidonUpdate(Contextcontext,AppWidgetManagerappWidgetManager,int[]appWidgetIds){Intentintent=newIntent(context,UpdateService.class);context.startService(intent);}在wifi中一切正常。但是3G网速慢,下载时间太长。结果我的服务被安卓系统杀死了。