使用 Cordova 时如何在 Windows Phone 上为 WideTile 指定图像?
问问题
805 次
1 回答
2
遗憾的是,目前不支持此选项 [Wide Live Tile]。我将为 WP8 和 WP7.8 创建一个功能请求。LiveTiles 插件的更新版本最有可能登陆到以下位置
https://github.com/apache/incubator-cordova-wp8/tree/master/plugins/www/plugins/LiveTiles
更新
更新版本可以在这里找到
https://github.com/sgrebnov/incubator-cordova-wp8/tree/master/plugins/www/plugins/LiveTiles
示例使用
navigator.plugins.liveTiles.updateAppTile(success, fail, {
title: document.getElementById('title').value,
image: 'Images/appbar.next.rest.png',
count: document.getElementById('count').value,
backTitle: 'Back title',
backContent: 'Back side',
backImage: 'Images/appbar.close.rest.png',
smallImage: 'Images/appbar.save.rest.png',
wideContent: 'This is wide content',
wideImage: 'Images/appbar.stop.rest.png',
wideBackImage: 'Images/appbar.feature.video.rest.png'
});
于 2012-11-27T13:39:43.627 回答