【问题标题】:Using Windows Phone WIde Tiles with Cordova将 Windows Phone WIde Tiles 与 Cordova 一起使用
【发布时间】:2025-11-28 17:55:01
【问题描述】:

使用 Cordova 时如何在 Windows Phone 上为 WideTile 指定图像?

【问题讨论】:

    标签: windows-phone-7 cordova cordova-2.0.0


    【解决方案1】:

    很遗憾,目前不支持此选项 [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'
            });
    

    【讨论】: