I’m creating a game for WP8, but its in XNA. How can I make it have a wide icon for the start screen? Only small and normal is supported at default
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Since XNA is only supported for WP7 apps you’ll have to check if your app is running on WP8, and if so use reflection to update the tile to WP8 icons. There’s a good example of how that code snippet would look like at this MSDN article @ Adding Windows Phone 8 Tile functionality to Windows Phone OS 7.1 apps
It might be easier on you to use the Mangopollo library which has that capability built-in with similar APIs to that of WP8. Here’s the source code that wraps the WP8 APIs to be called from WP7 @ http://mangopollo.codeplex.com/SourceControl/changeset/view/100687#2023247
And here’s the Mangopollo code snippet to use WP8 wide tiles in WP7 apps:
One more thing to remember is that other WP8 APIs can be used directly from XNA even though XNA apps are WP7 apps. Here’s an example on how to use WP8 in-app purhcase on WP7 apps (including XNA). And here’s an example on how to use new WP8 Launchers & Choosers in WP7 apps (scroll down).