This is a migrated thread and some comments may be shown as answers.

WP 7.8 Live Tile sizes

1 Answer 34 Views
LiveTileHelper
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Bernhard
Top achievements
Rank 1
Bernhard asked on 01 Oct 2013, 03:59 AM
Hi there,

When looking at the source code of the BackgroundAgentTools for WP7, I recognized that it uses the WP8 sizes for rendering the visual elements of the WP7.8 tiles.
However, since there are only Windows Phone 7 phones with WVGA available, there is in my opinion no need to provide such big images. So, when looking e.g. at RadFlipTileData, instead of using these tile sizes
private const int TileSmallWidth = 159;
private const int TileSmallHeight = 159;
private const int TileMediumWidth = 336;
private const int TileMediumHeight = 336;
private const int TileWideWidth = 691;
private const int TileWideHeight = 336;
it would be sufficient to use the following ones, saving some bytes of memory when creating the jpeg/png:
private const int TileSmallWidth = 99;
private const int TileSmallHeight = 99;
private const int TileMediumWidth = 210;
private const int TileMediumHeight = 210;
private const int TileWideWidth = 432;
private const int TileWideHeight = 210;

1 Answer, 1 is accepted

Sort by
0
Todor
Telerik team
answered on 02 Oct 2013, 12:08 PM
Hello Bernhard,

Thank you for writing.

We will need a little more time to investigate the case and the possibilities that we have here and will write back to you with more information next week.
 
Regards,
Todor
Telerik
TRY TELERIK'S NEWEST PRODUCT - EQATEC APPLICATION ANALYTICS for WINDOWS PHONE 7.
Learn what features your users use (or don't use) in your application. Know your audience. Target it better. Develop wisely.
Sign up for Free application insights >>
Tags
LiveTileHelper
Asked by
Bernhard
Top achievements
Rank 1
Answers by
Todor
Telerik team
Share this question
or