如何从通知中关闭应用程序

问题描述 投票:0回答:1

我的Android应用程序在后台运行50%的时间,并且有一个通知,当我按下它时,通过BusMap弹出主要活动PendingIntent。现在,我还希望在删除通知时关闭应用程序,以防止它在后台运行。我不想为此创建广播。我尝试将.setDeleteIntent(quitpendingintent)添加到同一通知构建器,但失败了。

有这种“自然”方式吗?

android notifications android-pendingintent
1个回答
0
投票

AFAIK没有Intent标志/机制结束你想要的Activity所以我认为最简单和最干净的方法是使用BroadcastReceiver并从那里完成活动。

从你发布的内容我认为你知道使用BroadcastReceiver做到这一点的方法,但以防万一here是一种方法。

© www.soinside.com 2019 - 2024. All rights reserved.