从Universal Volume Control检测应用程序启动

时间:2011-08-23 10:52:47

标签: windows-phone-7 deep-linking windows-phone-7.1 background-agents universal-volume-control

我有一个针对芒果设备的应用程序,它通过BackgroundAudioAgent播放音乐。因此,它与通用音量控制(UVC)集成。

有没有办法通过点击UVC中的艺术家详细信息来检测应用程序何时启动?

或者,有没有办法为UVC设置深层链接?

我希望这样,当通过UVC启动应用程序时,我可以将用户带到“正在播放”页面,而不是主页面。

更新
这也影响了从音乐和娱乐中正在播放的磁贴启动应用程序。作为BackgroundAudioPlayer的视频集线器自动与集线器的这一部分集成。

1 个答案:

答案 0 :(得分:3)

使用MediaHistory Zune Hub集成解决了这个问题。它还通过了RC SDK中的Marketplace Test Kit功能测试步骤,这是一个好兆头。

如果从MSDN上的示例开始,在后台音频代理中调用GetNextTrack()GetPreviousTrack()中的以下代码意味着当您单击UVC或Zune Now Playing时,您可以返回导航查询你在这里指定的字符串......

    private AudioTrack ChangeTrack()
    {
        AudioTrack track = _playList[currentTrackNumber];

        IsolatedStorageFile isoStore = IsolatedStorageFile.GetUserStoreForApplication();
        Stream s = isoStore.OpenFile("ApplicationIcon.png", FileMode.Open);

        MediaHistoryItem nowPlaying = new MediaHistoryItem();
        nowPlaying.Title = "Background Audio is playing!";
        nowPlaying.ImageStream = s;
        nowPlaying.PlayerContext.Add("keyString", track.Title);
        MediaHistory.Instance.NowPlaying = nowPlaying;

        return track;
    }