2
votes

Tile

I want make live tile like picture.How can i do this ?

3

3 Answers

2
votes

A good starting guide is available here. What you should consider is the fact that the images you see in the Live Tile background are dynamically generated (e.g. on the server) and then returned to the phone through a pre-defined channel.

4
votes

The tiles created above were more then likely created server side. That being said a lot has changed between windows phone 7.1 and windows phone 8. Here is a link to the updated information on windows phone 8 live tiles.

2
votes

On previous versions of Windows and Windows Phone, working with Live Tiles were restricted to some predefined templates.

When you see more complex tile, you can bet that the developer generated the image programmatically and then applied it on tile background.

With Windows 10, the Adaptive Tile brings a lot of new possibilities.

...
<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>
...

You can find the full example here

For previous versions, you can find examples at http://talkitbr.com/2015/05/25/live-tiles/