在push notification中,Tile noftification是比较特殊(raw notification 其实就是http post 方式收到的数据; toast notification是由系统来实现的),因为这个需要开发的时候,一半是由系统来完成的(也就是更新Quick Launch Area的图片由系统来完成),一半是由开发来完成的(按要求制做图片,以及加载图片)。

一.制用Tile 图片要求

一起学Windows Phone7开发(十二.一 Tile Notification)

二.     WebService端实现

Tile Message :

"Content-Type: text/xml\r\nX-WindowsPhone-Target: token\r\n\r\n"

<?xml version="1.0" encoding="utf-8"?>

<wp:Notification xmlns:wp="WPNotification">

     <wp:Tile>

       <wp:BackgroundImage>

            <background image path>//这里要填写图片所在的相对位置

(如: new Uri(@"Images/" + weather + ".png", UriKind.Relative)))

        </wp:BackgroundImage>

       <wp:Count>

         <count>

        </wp:Count>

       <wp:Title>

          <title>

       </wp:Title>

    </wp:Tile>

</wp:Notification>

三.手机端实现

1.       图片加载:

一定要把加载进来的图片属性设为“Content,否则无法显示。

一起学Windows Phone7开发(十二.一 Tile Notification)

一起学Windows Phone7开发(十二.一 Tile Notification)

2.       设置:

在程序properties中设置Tile初始文字和图片

一起学Windows Phone7开发(十二.一 Tile Notification)

设置后的效果:

一起学Windows Phone7开发(十二.一 Tile Notification)

相关文章:

  • 2021-09-14
  • 2021-11-23
  • 2021-09-03
  • 2021-06-10
  • 2021-06-12
  • 2021-11-18
猜你喜欢
  • 2022-01-22
  • 2021-05-24
  • 2021-12-25
  • 2022-02-07
  • 2021-05-29
  • 2021-06-16
  • 2021-07-18
相关资源
相似解决方案