gpt4 book ai didi

android - 如何在android中进行通知?

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:03:40 25 4
gpt4 key购买 nike

我正在 android 上做一个服务台应用程序。我想对未读票(客户建议或投诉)实现通知。在此应用程序的 iPhone 版本中,即使应用程序未在应用程序图标本身上打开未读票证的计数器,在 android 中是否可能。如果是这样,请帮助我像 iPhone 一样实现,否则帮助我为未读票实现正常的 android 通知。

谢谢

最佳答案

调用这个方法

private void triggerNotification(String s) {
CharSequence title = "Hello";
CharSequence message = s;
NotificationManager notificationManager;
notificationManager = (NotificationManager) context
.getSystemService("notification");
Notification notification;
notification = new Notification(
com.yourPackage.R.drawable.notification, "Notifiy.. ",
System.currentTimeMillis());
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0,
null, 0);
notification.setLatestEventInfo(context, title, message, pendingIntent);
notificationManager.notify(1010, notification);
}

关于android - 如何在android中进行通知?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7021606/

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