Windows Phone 8和Windows 8中如何啟動第三方應用程式並傳遞參數

來源:互聯網
上載者:User

需要被其他應用啟動的第三方應用需要註冊protocol association,當一個應用程式啟動一個特殊的URI的時候,那麼註冊了這個protocol的程式會自動啟動,並且可以通過這個特殊的URI將參數傳遞到第三方應用中。

第三方應用程式註冊protocol association步驟

Windows Phone 8 和 Windows 8 註冊方式有一些差異,下面分別說明註冊方式。

Windows Phone 8第三方應用程式註冊Protocol

1.修改WPAppManifest.xaml檔案

在</Token>後面添加類似如下代碼:

1 <Extensions>

2   <Protocol Name="testapp" NavUriFragment="encodedLaunchUri=%s" TaskID="_default" />

3 </Extensions>

Protocol 元素是 Extensions 元素的子項目,始終應該跟在所有 FileTypeAssociation 元素後面。Protocol 元素說明了應用註冊的 URI 方案名稱,使其可以在另一個應用啟動某個特定 URI 時啟動。

2.添加URI請求解析處理常式

傳人程式的UIR格式為:/Protocol?encodedLaunchUri={傳人的URI},為了使程式能夠正確解析傳人的URI,需要為工程添加AssociationUriMapper類,代碼如下:

/// <summary>    /// 解析第三方應用調用參數    /// </summary>    class AssociationUriMapper : UriMapperBase    {        private string tempUri;            public override Uri MapUri(Uri uri)        {            tempUri = uri.ToString();                            // Protocol association launch for contoso.            if (tempUri.Contains("/Protocol"))            {                int pos = tempUri.IndexOf("encodedLaunchUri");                String encodedString = tempUri;                if (pos >= 0)                {                    encodedString = tempUri.Substring(pos);                }                return new Uri("/MainPage.xaml?" + encodedString, UriKind.Relative);            }                // Include the original URI with the mapping to the main page.            return new Uri("/MainPage.xaml", UriKind.Relative);        }    }

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.