1

我正在尝试在 Xamarin Forms、windows phone 8.1 silverlight 项目中显示祝酒通知。在 Windows Phone 项目中,我有一个创建 toast 通知的方法,但是在执行时没有任何反应。没有抛出任何错误,一切似乎都正确执行,但手机上没有任何反应。

我已经在模拟器和实际手机上对其进行了测试。到目前为止,我在网上找到的所有内容实际上与我所拥有的相同(略有不同,但没有什么不同)。

该方法中的代码如下:

private void CreateNotification(string title, string message)
{
    ToastNotifier toastNotifier = ToastNotificationManager.CreateToastNotifier();

    XmlDocument toastXml = ToastNotificationManager.GetTemplateContent(ToastTemplateType.ToastText02);
    XmlNodeList toastTextElements = toastXml.GetElementsByTagName("text");
    toastTextElements[0].AppendChild(toastXml.CreateTextNode(title));
    toastTextElements[1].AppendChild(toastXml.CreateTextNode(message));

    ToastNotification toast = new ToastNotification(toastXml);
    toast.ExpirationTime = DateTimeOffset.UtcNow.AddSeconds(5);

    toastNotifier.Show(toast);
}

任何帮助将不胜感激。

提前致谢!

4

1 回答 1

3

如果您使用的是 Xamarin Forms,则有一个 NuGet 包:https ://www.nuget.org/packages/Toasts.Forms.Plugin/

它不使用 windows phone 中的标准 toast 通知系统,但需要对其进行扩展。

至于显示 Toast 通知,您是否在 Package.appxmanifest 中将 Toast Capable 设置为 Yes?

于 2016-02-16T23:33:21.333 回答