0

Windows 8用のシンプルなアプリを開発しています。私のアプリでは、アプリに同梱されているローカルホストからの画像を開始タイルに表示したいと思います。たとえば、私は自分の画像を賢明なように/images/tile1.jpgに保存しています。私のxmlコードは

<tile>
<visual>
    <binding template="TileWideImage">
        <image id="1" src ="http://localhost/images/tile1.jpg" />
    </binding>
</visual>

これは/tile1.xmlにも同様に存在します

私のdefault.jsコードは

    // For an introduction to the Blank template, see the following documentation:
// http://go.microsoft.com/fwlink/?LinkId=232509
(function () {
    "use strict";

    WinJS.Binding.optimizeBindingReferences = true;

    var app = WinJS.Application;
    var activation = Windows.ApplicationModel.Activation;

    app.onactivated = function (args) {
        if (args.detail.kind === activation.ActivationKind.launch) {
            if (args.detail.previousExecutionState !== activation.ApplicationExecutionState.terminated) {
                var notifications = Windows.UI.Notifications;
                var recurrence = notifications.PeriodicUpdateRecurrence.halfHour;


                var urls = [
                    new Windows.Foundation.Uri("http://localhost/tile1.xml"),
                    new Windows.Foundation.Uri("http://localhost/tile2.xml"),
                    new Windows.Foundation.Uri("http://localhost/tile3.xml"),
                    new Windows.Foundation.Uri("http://localhost/tile4.xml")
                ];


                notifications.TileUpdateManager.createTileUpdaterForApplication().enableNotificationQueue(true);
                notifications.TileUpdateManager.createTileUpdaterForApplication().startPeriodicUpdateBatch(urls, recurrence);

            } else {
                // TODO: This application has been reactivated from suspension.
                // Restore application state here.
            }
            args.setPromise(WinJS.UI.processAll());
        }
    };

    app.oncheckpoint = function (args) {
        // TODO: This application is about to be suspended. Save any state
        // that needs to persist across suspensions here. You might use the
        // WinJS.Application.sessionState object, which is automatically
        // saved and restored across suspension. If you need to complete an
        // asynchronous operation before your application is suspended, call
        // args.setPromise().
    };


  app.start();
})();

コードの何が問題なのか理解できません。助けてください。

4

1 に答える 1

0

まあ、あなたはできません。ループバックは許可されていないため、localhost サービスを使用している場合、アプリは認定に合格しません。

アプリ自体で画像を配信できますか?または、画像とタイルをホストする外部サービスをセットアップします。本当に必要なのは Windows Azure ブロブ ストレージのようなものだけで、Web サービスをホストする必要さえありません。

最後に、常に正方形のタイル画像を含めるようにしてください。ユーザーは常に制御できるため、アプリを幅の広いタイルとして表示しないことを選択する場合があります。

于 2012-12-08T16:47:48.353 に答える