有人知道如何使用活的瓷砖用的PhoneGap和Windows Phone 7? [关闭](Som

2019-10-17 18:23发布

我想知道如何从一个JSON从URL加载一些现场瓦片,但我从来没有使用该选项,可能会有人出主意该怎么办呢?

Answer 1:

活的瓷砖不是由PhoneGap的“核心”的支持,换句话说,如果要使用此功能,它不会是跨平台的。 为了支持特定于平台的功能PhoenGap有插件的概念。 你可以在这里找到活瓷砖插件:

https://github.com/purplecabbage/phonegap-plugins/tree/master/WindowsPhone/LiveTiles

按照该文件,则可以按如下更新:

navigator.plugins.liveTiles.updateAppTile(success, fail,
                  {title: 'title',
                   image:'Images/appbar.next.rest.png',
                   count: 5,
                   backTitle: 'Back title',
                   backContent:'Back side',
                   backImage : 'Images/appbar.close.rest.png'});


文章来源: Somebody know how to use live tiles with Phonegap and Windows Phone 7? [closed]