推送通知第二层

时间:2012-04-10 15:20:58

标签: push-notification windows-phone-7.1 mpns

我可以通过wp7通知来处理第二个磁贴吗? 我只能先做。

你有什么想要给我的吗?

当然可以使用应用程序中的原始通知进行管理,并将处理我的磁贴,但仍然被迫进入应用程序进行更新。

2 个答案:

答案 0 :(得分:1)

通过援助,这里是我如何格式化xml发送通知,我错过了标签ID

<?xml version="1.0" encoding="utf-8"?>
 <wp:Notification xmlns:wp=WPNotification>
  <wp:Tile ID="Navigation URI of the tile to update">
   <wp:BackgroundImage><string></wp:BackgroundImage>
   <wp:Count><string></wp:Count>
   <wp:Title><string></wp:Title>
   <wp:BackBackgroundImage><string></wp:BackBackgroundImage>
   <wp:BackTitle><string></wp:BackTitle>
   <wp:BackContent><string></wp:BackContent>
  </wp:Tile>
 </wp:Notification>

thx tomasmcguinness

答案 1 :(得分:-1)

MSDN文档涵盖了辅助磁贴

http://msdn.microsoft.com/en-us/library/hh202945(v=vs.92).aspx

这些参数是您用来更新辅助磁贴的参数:

<wp:BackBackgroundImage>
<wp:BackTitle>
<wp:BackContent>

在推送XML中填充这三个元素,这将更新后面的图块。