当我们按下这个按钮
我们看到我们没有关闭的应用,就像这样
但是当我们想要从这个屏幕关闭一个应用程序(图片下方)时,不会调用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()以销毁服务之前运行关闭应用程序逻辑.
总结以上是内存溢出为你收集整理的java – Android:当我从最近的应用程序按钮关闭应用程序时,不会调用OnDestroy全部内容,希望文章能够帮你解决java – Android:当我从最近的应用程序按钮关闭应用程序时,不会调用OnDestroy所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)