I have a Windows Phone 8.1 app, written in Windows RT and XAML. The app suffers from an issue with one of its shortcut tiles placed on the home screen getting grayed out. In screenshot 1, the large tile is grayed out and the graying out is visible when compared with the tiles of other apps. In screenshot 2, the smaller tile appears perfectly fine.
The issue persists with only the large tile of the app, and it remains grayed out all the time, even when freshly installed onto a phone. I read a lot of reports about app tiles getting grayed out, and the reason behind them was some sort of backup being performed. But in my case the issue is permanent and exists ONLY with the large tile.
How can I fix this issue? If the issue is because of some backup being performed in the background by the OS, how can I avoid this? Also, I did check the backup
option in the settings
menu, and it was turned off. So, theoretically, no backup could be performed, leaving no reason for graying out.
Any pointers?
UPDATE: Snippet from the manifest file where the tiles are set. The background color is set to transparent
.
<m3:VisualElements DisplayName="my app" Square150x150Logo="Assets\Logo.png" Square44x44Logo="Assets\SmallLogo.png" Description="WindowsPhone" ForegroundText="light" BackgroundColor="transparent" ToastCapable="true">
<m3:LockScreen Notification="badgeAndTileText" BadgeLogo="Assets\LockImage.png" />
<m3:DefaultTile Wide310x150Logo="Assets\WideLogo.png" Square71x71Logo="Assets\Square71x71Logo.png">
<m3:ShowNameOnTiles>
<m3:ShowOn Tile="square150x150Logo" />
<m3:ShowOn Tile="wide310x150Logo" />
</m3:ShowNameOnTiles>
</m3:DefaultTile>