0

IconicTile 템플릿을 내 응용 프로그램의 기본 타일로 정의했습니다. 이제 알림 개수로 타일을 업데이트하고 싶습니다. 그래서 업데이트를 위해 다음과 같은 매개 변수를 사용자에게 전송했습니다IconicTile이 Windows Phone 8.0에서 업데이트되지 않음

backgroundColor, 
count, 
title, 
iconImage, 
smallIconImage, 
wideContent1, 
wideContent2, 
wideContent3 

타일 업데이트는 윈도우 폰 8.1하지만이 장치와 윈도우 폰 8.0에서 실행중인 에뮬레이터에 올라오고 있지에서 실행되는 테스트 장치에서 잘 작동합니다. 내가 여기서 무엇을 놓치고 있니? 도와주세요

답변

0

신청서를 WP8 또는 WP8.1으로 타겟팅하고 있습니까?

클래스에이 스 니펫을 추가해보세요.

IconicTileData TileData = new IconicTileData() 
{ 
Title = "[title]", 
Count = [count], 
WideContent1 = "[1st row of content]", 
WideContent2 = "[2nd row of content]", 
WideContent3 = "[3rd row of content]", 
SmallIconImage = [small Tile size URI], 
IconImage = [medium/wide Tile size URI], 
BackgroundColor = [.NET color type of Tile] 
}; 

희망 live tile is not updating in Windows Phone이 도움이됩니다.

+0

안녕하세요. 늦게 답변드립니다. 실제로 서버 측 문제가있었습니다. 답변 감사합니다 – PratPor

관련 문제