我正在使用UWP开发Microsoft Band 2应用程序,因为我试图从应用程序访问现有的Tile来更新Tile PageLayout背景。 我已经编写了以下代码来创建磁贴
IBandInfo[] pairedBands = await BandClientManager.Instance.GetBandsAsync();
if (pairedBands.Count() > 0)
{
try
{
using (IBandClient bandClient = await BandClientManager.Instance.ConnectAsync(pairedBands[0]))
{
// do work after successful connect
// get the current set of tiles
IEnumerable<BandTile> tiles = await bandClient.TileManager.GetTilesAsync();
if (tiles.Count() == 0)
{
int tileCapacity = await bandClient.TileManager.GetRemainingTileCapacityAsync();
if (tileCapacity > 0)
{
// create a new Guid for the tile
Guid tileGuid = Guid.NewGuid();
// create a new tile with a new Guid
BandTile tile = new BandTile(tileGuid)
{
// enable badging (the count of unread messages)
// IsBadgingEnabled = true,
// set the name
Name = "Torch Tile",
TileIcon = await LoadIcon("ms-appx:///Assets/Electric Bulb.png"),
SmallIcon = await LoadIcon("ms-appx:///Assets/Torchsmaltile.png")
};
var panel = new FilledPanel
{
//ElementId = 0,
Rect = new PageRect(0, 0, 260, 128),
BackgroundColor = bandcolor
};
var layout = new PageLayout(panel);
tile.PageLayouts.Add(layout);
try
{
// add the tile to the Band
if (await bandClient.TileManager.AddTileAsync(tile))
{
List<PageData> pageDataArray = new List<PageData>();
pageDataArray.Add(new PageData(pageguid, 0, new FilledButtonData(0, Colors.Transparent.ToBandColor())));
await bandClient.TileManager.SetPagesAsync(
tileGuid, pageDataArray);
}
}
catch (BandException ex)
{
// handle a Band connection exception }
}
}
}
}
}
catch (BandException e)
{
// handle BandException
}
}
以下是我尝试更新Tile但无法正常工作的代码。
IBandInfo[] pairedBands = await BandClientManager.Instance.GetBandsAsync();
if (pairedBands.Count() > 0)
{
try
{
using (IBandClient bandClient = await BandClientManager.Instance.ConnectAsync(pairedBands[0]))
{
// do work after successful connect
// get the current set of tiles
IEnumerable<BandTile> tiles = await bandClient.TileManager.GetTilesAsync();
if (tiles.Count() > 0)
{
foreach (var tile in tiles)
{
foreach (var pageLayout in tile.PageLayouts)
{
var panel = pageLayout.Root as FilledPanel;
panel.BackgroundColor = Colors.Green.ToBandColor();
pageLayout.Root = panel;
}
}
}
}
}
catch (Exception ex)
{
}
}
pageLayout.Root = panel;代码我无法找到如何将更改发送回Band Tile。
任何人都可以帮我更新Tile PageLayout背景颜色。
答案 0 :(得分:3)
页面布局本身是静态的;一旦添加了Tile,就无法更改(删除之后再重新添加Tile)。我们的想法是您更新页面实例(具有给定布局)的内容(例如文本)。 Band SDK Documentation的第8.7节描述了可以在给定的Page实例中更新的内容。
对于您的场景,应用程序需要允许用户在任何给定时间选择最多可以在Tile 中使用的5种颜色,然后定义5个页面布局,每个布局使用其中一个那些颜色。 (Tile最多可以有5个页面布局。)然后,您可以创建5个页面实例,每个实例定义一个,以创建一个具有每种颜色的页面的平铺。如果用户想要更改颜色组合,那么应用程序将需要删除然后使用一组新的页面布局重新添加Tile。