编程语言
首页 > 编程语言> > Android:当应用程序被杀时,保持服务运行

Android:当应用程序被杀时,保持服务运行

作者:互联网

即使应用程序被杀,我也希望在后台运行IntentService.而“杀死”我的意思是长按主页按钮 – >查看所有正在运行的应用 – >把我的应用放在一边 – >应用程序被杀或长按后退按钮 – > app杀了

我的代码如下.在我的MainActivity中:

Intent intent = new Intent(this, MyService.class);
this.startService(intent);

在我的MyService中:

public class MyService extends IntentService {

@Override
protected void onHandleIntent(Intent intent) {
    System.out.println("MyService started");
    run();
}

private void run() {
    while (true){
        System.out.println("MyService still running");
        doSomething();
        waitSomeTime();
    }
}

}

我看到应用程序打开时服务正在运行.当我通过主页按钮最小化应用程序时,它仍在运行.当我通过后退按钮关闭应用程序时,它仍在运行.但如果我如上所述杀死它,它就会停止.我该如何解决这个问题?

解决方法:

如果您的应用程序启动了您的服务,那么实际上您的服务正在主进程上运行.因此,当应用程序被杀死时,服务也将被停止.所以你可以做的是,从服务的onTaskRemoved方法发送广播,如下所示:

 Intent intent = new Intent("com.android.ServiceStopped");
 sendBroadcast(intent);

并有一个广播接收器,将再次启动服务.我试过了.服务从所有类型的杀戮重新开始.

标签:intentservice,android,background,service
来源: https://codeday.me/bug/20190916/1807661.html