Cordova を使用する場合、Windows Phone で WideTile のイメージをどのように指定しますか?
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 に答える