Windows手机直播磁贴

时间:2013-03-08 20:16:06

标签: windows-phone live-tile

Tile

我想制作像图片一样的实时图块。我该怎么做?

3 个答案:

答案 0 :(得分:4)

上面创建的磁贴很可能是在服务器端创建的。据说在Windows Phone 7.1和Windows Phone 8之间发生了很多变化。这里是a link更新到windows phone 8 live tiles的信息。

答案 1 :(得分:2)

有一本很好的入门指南here。您应该考虑的事实是,您在Live Tile背景中看到的图像是动态生成的(例如在服务器上),然后通过预定义的频道返回到手机。

答案 2 :(得分:2)

在以前版本的Windows和Windows Phone上,使用Live Tiles仅限于某些预定义模板。

当您看到更复杂的图块时,您可以打赌开发人员以编程方式生成图像,然后将其应用于图块背景。

使用Windows 10,Adaptive Tile带来了许多新的可能性。

...
<binding template="TileLarge" hint-textStacking="center">
  <group>
    <subgroup hint-weight="1"/>
    <subgroup hint-weight="2">
      <image src="Assets/Apps/Hipstame/hipster.jpg" hint-crop="circle"/>
    </subgroup>
    <subgroup hint-weight="1"/>
  </group>

  <text hint-style="title" hint-align="center">Hi,</text>
  <text hint-style="subtitleSubtle" hint-align="center">MasterHip</text>
</binding>
...

您可以找到完整示例here

对于以前的版本,您可以在http://talkitbr.com/2015/05/25/live-tiles/

找到示例