如何在Windows Phone 8.1运行时应用程序上运行应用程序时使用Toast通知?

时间:2015-04-25 19:31:30

标签: windows-runtime windows-phone-8.1 toast

我正在开发预算管理器应用。我的应用程序记录最终用户输入的费用和收入。但我想为应用添加一项功能:用户可以添加定期发生的收入/费用(例如每10天一次)。

我认为ScheduledToastNotification是此问题的解决方案,因为我希望用户批准创建此事务以完成该过程。但问题是当应用程序运行时(甚至是从后台运行)当屏幕上显示ToastNotification时,点击它不会像预期的那样工作:启动参数不会传递给我的应用程序。我发现原因是因为OnLaunched事件没有被触发(因为应用程序正在运行)。

另一个问题是我无法确保一切正常,因为我无法调试此类行为:ToastNotification仅在应用程序未运行时才相关,但我无法调试未运行的应用程序。那么,如何确切知道当我通过ToastNotification启动我的应用程序时会发生什么?

是否有任何解决方案可以帮助我实现这一目标?以下是我的代码:

public static void CreateNotification(Class.Action Transaction)
    {
        var loader = new Windows.ApplicationModel.Resources.ResourceLoader();
        var ToastXml = ToastNotificationManager.GetTemplateContent(ToastTemplateType.ToastText02);
        var Strings = ToastXml.GetElementsByTagName("text");
        Strings[0].AppendChild(ToastXml.CreateTextNode(loader.GetString("NotificationText")));
        Strings[1].AppendChild(ToastXml.CreateTextNode(Transaction.Title + " : " + Transaction.SAmount));

        IXmlNode toastNode = ToastXml.SelectSingleNode("/toast");
        XmlElement audio = ToastXml.CreateElement("audio");

        audio.SetAttribute("src", "ms-winsoundevent:Notification.IM");
        toastNode.AppendChild(audio);

        ((XmlElement)toastNode).SetAttribute("launch", Transaction.Id.ToString());

        var Toast = new ScheduledToastNotification(ToastXml, Transaction.NextOccurence);

        Toast.Id = Transaction.Id + "";

        ToastNotificationManager.CreateToastNotifier().AddToSchedule(Toast);
    }

这就是我打算使用参数的方式:

int TransactionID = 0;

        if (int.TryParse((string)e.Parameter, out TransactionID))
        {
            var loader = new Windows.ApplicationModel.Resources.ResourceLoader();

            Class.Action RecurentAction = new Class.Action((from act in ActCRUD.GetActions()
                                                                where act.Id == TransactionID
                                                                select act).FirstOrDefault());

            Flyout flyer = new Flyout();
            StackPanel content = new StackPanel();

            TextBlock editMessage = new TextBlock();
            editMessage.FontSize = 20;
            editMessage.Margin = new Thickness(15, 50, 15, 15);
            TextBox newCategoryName = new TextBox();
            newCategoryName.FontSize = 20;
            newCategoryName.Margin = new Thickness(15, 15, 15, 15);
            Button confirmEdit = new Button();
            confirmEdit.Margin = new Thickness(15, 15, 15, 15);

            editMessage.Text = loader.GetString("EnterComment");
            newCategoryName.PlaceholderText = loader.GetString("EnterCommentPlaceholder");
            confirmEdit.Content = loader.GetString("OkText");
            confirmEdit.Tapped += new TappedEventHandler(delegate(object o, TappedRoutedEventArgs i)
            {
                RecurentAction.Comment = newCategoryName.Text;
                ActCRUD.AddAction(RecurentAction);
                MainPage.CreateNotification((from Class.Action action in ActCRUD.GetActions()
                                             orderby action.Id descending
                                             select action).First());

                flyer.Hide();
                newCategoryName.Text = "";
            });

            content.Children.Add(editMessage);
            content.Children.Add(newCategoryName);
            content.Children.Add(confirmEdit);

            flyer.Content = content;

            MessageDialog NotificationConfirmation = new MessageDialog(loader.GetString("ConfirmRecurentAction"));
            NotificationConfirmation.Commands.Add(new UICommand(loader.GetString("Confirm"), (commands) =>
            {
                flyer.ShowAt(PivotFintatanana);
            }));

            NotificationConfirmation.Commands.Add(new UICommand(loader.GetString("DoNotConfirm"), (commands) =>
            {

            }));

            await NotificationConfirmation.ShowAsync();
        }

我正在寻找的是一个ScheduledToastNotification,它会将其参数发送到应用程序,即使这个参数正在运行(通过强制它触发OnLaunched事件或通过其他解决方法)。

谢谢, 问候。

1 个答案:

答案 0 :(得分:0)

如果在应用程序运行时显示toast,并且点击toast,则确实调用OnLaunched函数。但是,Visual Studio模板提供的OnLaunched中的代码会检查rootFrame的内容是否为null,如果不是(如果您的应用正在运行则应该是这种情况),它只显示正在运行的实例。

以下是应用程序已在运行时跳过的代码:

if (rootFrame.Content == null) //shouldn't be null if app is running
{  
    if (!rootFrame.Navigate(typeof(MainPage), e.Arguments))
    {
        throw new Exception("Failed to create initial page");
    }
}

所以你需要在这部分代码中添加你的逻辑,比如

if(e.Arguments != null)
{
    //navigate to details page with e.Arguments
}    
else if (rootFrame.Content == null)
{
    if (!rootFrame.Navigate(typeof(BlankPage1), e.Arguments))
    {
        throw new Exception("Failed to create initial page");
    }
}