Windows Phone 中的动画应用程序图标
我曾尝试用谷歌搜索这个内容,但结果一无所获。我想要的是如何更改 Windows Phone 上的图标(如人员应用程序或短信)的教程或示例代码。例如,当您收到新的短信时,它会在图标中的脸部旁边放置一个数字。我有什么办法可以在我的应用程序中做到这一点吗?
I have tried googling for this and came up empty. What I want is a tutorial or example code of how to change my icon on the windows phone like the people application or SMS. For example when you get a new SMS message it puts a number next to the face in the icon. Is there any way for me to do that in my app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要发送平铺推送通知。
这允许您更新图像、文本和(可选)数字。
推送通知应该从远程 [web] 服务触发。
您还可以使用 ShellTileSchedule 定期更新磁贴。
You need to send a Tile Push Notification.
This allows you to update the image, text and (optionally) a number.
Push notifications shoudl be triggered from a remote [web] service.
You can also have the tile update periodically using a ShellTileSchedule.
您可以使用注册到 Microsoft 推送通知服务的 Web 服务中的推送通知来更新应用程序的磁贴。然而,这并不是绝对必要的。您甚至可以通过设置 ShellTileSchedule 来更新磁贴,而无需推送通知。不过,最小更新间隔为 1 小时。
请参阅此处。
You can update your application's Tile using Push Notifications from a web service registered with a Microsoft Push Notification Service. However, this isn't absolutely necessary. You can even update your tiles without push notifications, by setting a ShellTileSchedule. The minimum update interval is 1 hour, however.
See here.