Questions tagged «restart»





14
应用程序关闭时,Android服务停止
我正在从主要的Android活动中启动服务,如下所示: final Context context = base.getApplicationContext(); final Intent intent = new Intent(context, MyService.class); startService(intent); 当我通过从最近的应用程序列表中划出活动页面来关闭活动页面时,该服务将停止运行并在一段时间后重新启动。由于我的应用程序要求,我无法将持久性服务与通知一起使用。如何使服务不重新启动或关闭,而仅在应用退出时继续运行?

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.