编程语言
首页 > 编程语言> > java – Android:当我从最近的应用程序按钮关闭应用程序时,不会调用OnDestroy

java – Android:当我从最近的应用程序按钮关闭应用程序时,不会调用OnDestroy

作者:互联网

当我们按下这个按钮

我们看到我们没有关闭的应用,就像这样

但是当我们想要从这个屏幕关闭一个应用程序(图片下方)时,不会调用onDestroy()方法,但应用程序已关闭.当应用程序以这种方式关闭时,我需要调用onDestroy().我怎么能这样做?

解决方法:

如Android文档中所述,无法保证在退出应用程序时将调用onDestroy().

“There are situations where the system will simply kill the activity’s hosting process without calling this method”

https://developer.android.com/reference/android/app/Activity.html#onDestroy%28%29

相反,您可以创建一个服务,当您的活动在其中运行的任务被销毁时将通知该服务.

创建服务类:

public class ClosingService extends Service {

    @Nullable
    @Override
    public IBinder onBind(Intent intent) {
        return null;
    }

    @Override
    public void onTaskRemoved(Intent rootIntent) {
        super.onTaskRemoved(rootIntent);

        // Handle application closing
        fireClosingNotification();

        // Destroy the service
        stopSelf();
    }
}

在清单中声明/注册您的服务(在应用程序标记内,但在任何活动标记之外):

<service android:name=".services.ClosingService"
             android:stopWithTask="false"/>

指定stopWithTask =“false”将导致在从Process中删除任务时在服务中触发onTaskRemoved()方法.

在这里,您可以在调用stopSelf()以销毁服务之前运行关闭应用程序逻辑.

标签:ondestroy,android,java,close-application
来源: https://codeday.me/bug/20191005/1857033.html