gpt4 book ai didi

xamarin.android - Android Xamarin 通知生成器设置不工作时

转载 作者:行者123 更新时间:2023-12-02 03:59:59 24 4
gpt4 key购买 nike

我正在尝试在 Xamarin Forms 中实现本地推送通知。我正在使用 DependencyService 来获取通知的 Android 实现。

这是我用来在特定时间推送通知的代码:

public void SetNotification(DateTime notificationDate, TimeSpan notificationTime)
{
long dateInMilli = (long)(notificationDate.Add(notificationTime) - DateTime.MinValue).TotalMilliseconds;

Notification.Builder builder = new Notification.Builder(Xamarin.Forms.Forms.Context)
.SetContentTitle("Test Notification")
.SetContentText("Notification from Xamarin Forms")
.SetSmallIcon(Resource.Drawable.icon)
.SetDefaults(NotificationDefaults.Sound)
.SetWhen(dateInMilli);

Notification notification = builder.Build();
NotificationManager notificationManager =
(NotificationManager)Forms.Context.GetSystemService(Context.NotificationService);
const int notificationId = 0;
notificationManager.Notify(notificationId, notification);
}

问题是,通知不是按照 SetWhen(dateInMilli) 设置的日期和时间即时显示的.

最佳答案

SetWhen 用于显示您放入通知时间戳的时间,而不是在 X 之后发送通知。您必须为此使用警报。

引用this了解该类(class)。

关于xamarin.android - Android Xamarin 通知生成器设置不工作时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42317073/

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