Pending Intent 有生命周期吗?
Does a Pending Intent have a lifetime?
我有一个运行前台服务的应用程序。该应用程序有一个 start/stop 按钮作为其通知的一部分,可以猜到它会启动和停止前台服务。单击开始按钮后,将触发一个待处理的 Intent。
考虑以下场景:
应用程序已被销毁[从最近的项目列表中删除]但通知仍然可见。
即使应用程序已被销毁,我也能够启动和停止前台服务,因为单击通知按钮会触发 Pending 意图(这又会调用广播接收器)。
但是,我观察到的是,一两天后,单击通知上的按钮后,未触发未决意图(即前台服务未启动)。这就引出了一个问题,在包含的应用程序被销毁后,挂起的意图是否有生命周期?或者我在这里遗漏了什么?
我的未决意向电话:
Intent notificationBroadcastIntent = new Intent(this, MyBroadcastReceiver.class);
PendingIntent playIntent = PendingIntent.getBroadcast(this, MY_REQUEST_CODE,
notificationBroadcastIntent, PendingIntent.FLAG_UPDATE_CURRENT);
待定意图调用的广播接收器(依次启动前台服务):
@Override
public void onReceive(Context context, Intent intent) {
Log.i(MyBroadcastReceiver.class.getSimpleName(), "MyBroadcastReceiver called to update service notification");
if (isMyForegroundServiceRunning(MyForegroundService.class, context)) {
Intent stopIntent = new Intent(context, MyForegroundService.class);
stopIntent.setAction(STOP_SERVICE_ACTION);
context.startService(stopIntent);
} else {
Intent startIntent = new Intent(context, MyForegroundService.class);
startIntent.setAction(START_SERVICE_ACTION);
context.startService(startIntent);
}
}
PendingIntent
s 不会过期。但是,它们不是持久性的,不会在设备重启后继续存在。
要查看 PendingIntent
是否仍然存在,您可以使用以下 adb 命令:
adb shell dumpsys activity intents
这会列出系统中的所有 PendingIntent
。您还可以使用以下方式查看通知:
adb shell dumpsys notification
这将显示所有 Notification
,包括为它们设置的 PendingIntent
。
我有一个运行前台服务的应用程序。该应用程序有一个 start/stop 按钮作为其通知的一部分,可以猜到它会启动和停止前台服务。单击开始按钮后,将触发一个待处理的 Intent。
考虑以下场景:
应用程序已被销毁[从最近的项目列表中删除]但通知仍然可见。 即使应用程序已被销毁,我也能够启动和停止前台服务,因为单击通知按钮会触发 Pending 意图(这又会调用广播接收器)。 但是,我观察到的是,一两天后,单击通知上的按钮后,未触发未决意图(即前台服务未启动)。这就引出了一个问题,在包含的应用程序被销毁后,挂起的意图是否有生命周期?或者我在这里遗漏了什么?
我的未决意向电话:
Intent notificationBroadcastIntent = new Intent(this, MyBroadcastReceiver.class);
PendingIntent playIntent = PendingIntent.getBroadcast(this, MY_REQUEST_CODE,
notificationBroadcastIntent, PendingIntent.FLAG_UPDATE_CURRENT);
待定意图调用的广播接收器(依次启动前台服务):
@Override
public void onReceive(Context context, Intent intent) {
Log.i(MyBroadcastReceiver.class.getSimpleName(), "MyBroadcastReceiver called to update service notification");
if (isMyForegroundServiceRunning(MyForegroundService.class, context)) {
Intent stopIntent = new Intent(context, MyForegroundService.class);
stopIntent.setAction(STOP_SERVICE_ACTION);
context.startService(stopIntent);
} else {
Intent startIntent = new Intent(context, MyForegroundService.class);
startIntent.setAction(START_SERVICE_ACTION);
context.startService(startIntent);
}
}
PendingIntent
s 不会过期。但是,它们不是持久性的,不会在设备重启后继续存在。
要查看 PendingIntent
是否仍然存在,您可以使用以下 adb 命令:
adb shell dumpsys activity intents
这会列出系统中的所有 PendingIntent
。您还可以使用以下方式查看通知:
adb shell dumpsys notification
这将显示所有 Notification
,包括为它们设置的 PendingIntent
。