gpt4 book ai didi

android - 从通知启动服务

转载 作者:IT老高 更新时间:2023-10-28 21:57:09 25 4
gpt4 key购买 nike

是否可以从通知启动服务。启动 Activity 的正常方式运行良好,但在实际启动应用程序之前我需要对数据进行一些预检查。

我已经通过在通知 Intent 中包含一个有效的服务对其进行了测试,但没有任何反应。

最佳答案

It is possible to start a service from a notification.

您必须使用 PendingIntent.getService 而不是 pendingIntent.getActivity。

Intent notificationIntent = new Intent(mContext, HandleNotificationClickService.class);
PendingIntent pendingIntent = PendingIntent.getService(mContext, 0, notificationIntent, 0);

Notification notification = new Notification(icon, tickerText,System.currentTimeMillis());
notification.setLatestEventInfo(mContext,contentTitle , contentText, pendingIntent);
notification.flags = Notification.FLAG_AUTO_CANCEL | Notification.FLAG_ONGOING_EVENT;

NotificationManager notificationManager = (NotificationManager) mContext.getSystemService(Context.NOTIFICATION_SERVICE);

notificationManager.notify(CALLER_ID_NOTIFICATION_ID, notification);

关于android - 从通知启动服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6422319/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com