PushSharp + Windows Phone深度链接Toast通知

时间:2013-05-11 01:44:00

标签: windows-phone-7 windows-phone-8 windows-phone-7.1 pushsharp

在Windows Phone中使用PushSharp时,我会发送通知,其中包含指向我应用中视图的深层链接。

push.QueueNotification(new WindowsPhoneToastNotification()
.ForEndpointUri(new Uri(endpoint))
.ForOSVersion(WindowsPhoneDeviceOSVersion.Eight)
.WithBatchingInterval(BatchingInterval.Immediate)
.WithNavigatePath("/Views/DetailView.xaml")
.WithParameter("slug", slug)
.WithText1(text)
.WithText2(message));

但是当吐司出现并触摸它以打开应用程序时,应用程序将打开我的默认视图而不是请求的DetailView。

这不应该打开我的DetailView吗?

1 个答案:

答案 0 :(得分:0)

你可能想尝试一下“〜/ Views / DetailView.xaml”的路径......