热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

C#学习教程:WindowsPhone8上存在哪些URI协议?分享

WindowsPhone8上存在哪些URI协议?我已经在网上搜索了一个完整的URI协议列表(XXX:),以便在WindowsPhone8中打开不同的应用程序。我找到了一些列表但只有

Windows Phone 8上存在哪些URI协议?

我已经在网上搜索了一个完整的URI协议列表(XXX://),以便在Windows Phone 8中打开不同的应用程序。我找到了一些列表但只有极少量的协议。 我正在使用这个wiki-post,希望能够制作完整的协议列表,并至少涵盖Windows Phone 8中的所有股票应用程序。

例如,有许多部分列表: http : //developer.nokia.com/Community/Wiki/URI_Association_Schemes_List http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj662937(v=vs.105 )的.aspx

但是我认为如果我们能够编译所有URL方案的大清单会很棒。 即使是未记录的URL方案也会很有趣。

我添加了下面找到的所有内容。 如果您知道更多,请添加:

股票应用

http:[URL] Launches the web browser and navigates to the specified URL. mailto:[email address] Launches the email app and creates a new message with the specified email address on the To line. Note that the email is not sent until the user taps send. ms-settings-airplanemode: Launches the Airplane Mode Settings app. ms-settings-bluetooth: Launches the Bluetooth Settings app. ms-settings-cellular: Launches the Cellular Settings app. ms-settings-emailandaccounts: Launches the email and accounts settings app. ms-settings-location: Launches the Location Settings app. ms-settings-lock: Launches the Lock Screen settings app. ms-settings-wifi: Launches the Wi-Fi Settings app. zune:navigate?appid=[app ID] Launches the Windows Phone Store and shows the details page for the specified app. zune:reviewapp Launches the Store and shows the review page for the calling app. zune:reviewapp?appid=app[app ID] Launches the Store and shows the review page for the specified app. Note that you must prepend “app” to the ID for the specified app. For example, the URI for reviewing an app with the ID fdf05477-814e-41d4-86cd-25d5a50ab2d8 would be zune:reviewapp?appid=appfdf05477-814e-41d4-86cd-25d5a50ab2d8 zune:search?publisher=[publisher name] Launches the Store and searches for items by publisher name. zune:search?keyword=[search keyword]&cOntenttype=app Launches the Store and searches for apps by keyword. zune:search?keyword=[search keyword]&publisher=[publisher name]&cOntenttype=app Launches the Store and searches for the specified content. All parameters are optional. Specifying “cOntenttype=app” will limit the search to apps. Omitting this parameter will search all content. ms-drive-to: Get driving directions http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj710324(v=vs.105).aspx ms-walk-to: Get walking directions http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj710324(v=vs.105).aspx 

诺基亚应用程序

 nokia-music: Nokia Music app. See http://developer.nokia.com/Community/Wiki/Nokia_Music_app-to-app_protocol_for_Windows_Phone_8 directions: Here Maps. See http://www.developer.nokia.com/Resources/Library/Lumia/#!maps-and-navigation/here-launchers.html explore-maps: Here Maps. See http://www.developer.nokia.com/Resources/Library/Lumia/#!maps-and-navigation/here-launchers.html guidance-drive: Here Maps. See http://www.developer.nokia.com/Resources/Library/Lumia/#!maps-and-navigation/here-launchers.html guidance-walk: Here Maps. See http://www.developer.nokia.com/Resources/Library/Lumia/#!maps-and-navigation/here-launchers.html places: Here Maps. See http://www.developer.nokia.com/Resources/Library/Lumia/#!maps-and-navigation/here-launchers.html public-transit: Here Maps. See http://www.developer.nokia.com/Resources/Library/Lumia/#!maps-and-navigation/here-launchers.html 

商店应用程序

 metrotube: Metrotube, see http://lazywormapps.com/metrotube-uri-schema.html instagraph: Instagraph, see: http://www.geekchamp.com/forums/app-uri-protocol-directory/instagraph-custom-uri-schema wpcentral: Windows Phone Central, see http://jaybennett.co.uk/2013/06/11/using-the-wpcentral-app-uri-schema/ pouch: Pouch, see http://jgstechthoughts.wordpress.com/2013/06/12/custom-uri-associations-for-pouch-for-windows-phone/ metrotour: Metrotour, see: http://www.geekchamp.com/forums/app-uri-protocol-directory/metrotour-uri-protocol spotify: Spotify, see: https://www.spotify.com/fi/blog/archives/2008/01/14/linking-to-spotify/ mehdoh: Mehdoh, see: http://www.mehdoh.com/uri.htm pictureslab: Pictures lab, see: http://kodierer.blogspot.de/2013/07/just-call-us-well-might-call-you-how-to.html gmaps: gMaps, see: http://dreamteam-mobile.com/blog/2013/01/adding-mapping-features-to-your-windows-8-windows-phone-app/ geosense: Geo, see: http://en.wikipedia.org/wiki/Geo_URI keyring: Keyring, see: http://directblog.schmidtbonn.de/2013/07/11/keyring-uri-schema/ foursquare: Foursquare, see: https://developer.foursquare.com/resources/client#iphone fb: 

参考文献:

http://developer.nokia.com/Community/Wiki/URI_Association_Schemes_List

http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj662937(v=vs.105).aspx

诺基亚在其开发者维基上保留了一系列URI关联方案。 这可能是追踪可用uri计划的最佳地点。 该清单可在此处获得

上述就是C#学习教程:Windows Phone 8上存在哪些URI协议?分享的全部内容,如果对大家有所用处且需要了解更多关于C#学习教程,希望大家多多关注—编程笔记


推荐阅读
  • [转]doc,ppt,xls文件格式转PDF格式http:blog.csdn.netlee353086articledetails7920355确实好用。需要注意的是#import ... [详细]
  • malloc 是 C 语言中的一个标准库函数,全称为 memory allocation,即动态内存分配。它用于在程序运行时申请一块指定大小的连续内存区域,并返回该区域的起始地址。当无法预先确定内存的具体位置时,可以通过 malloc 动态分配内存。 ... [详细]
  • 网络爬虫的规范与限制
    本文探讨了网络爬虫引发的问题及其解决方案,重点介绍了Robots协议的作用和使用方法,旨在为网络爬虫的合理使用提供指导。 ... [详细]
  • 本文回顾了作者初次接触Unicode编码时的经历,并详细探讨了ASCII、ANSI、GB2312、UNICODE以及UTF-8和UTF-16编码的区别和应用场景。通过实例分析,帮助读者更好地理解和使用这些编码。 ... [详细]
  • 基于Net Core 3.0与Web API的前后端分离开发:Vue.js在前端的应用
    本文介绍了如何使用Net Core 3.0和Web API进行前后端分离开发,并重点探讨了Vue.js在前端的应用。后端采用MySQL数据库和EF Core框架进行数据操作,开发环境为Windows 10和Visual Studio 2019,MySQL服务器版本为8.0.16。文章详细描述了API项目的创建过程、启动步骤以及必要的插件安装,为开发者提供了一套完整的开发指南。 ... [详细]
  • NX二次开发:UFUN点收集器UF_UI_select_point_collection详解
    本文介绍了如何在NX中使用UFUN库进行点收集器的二次开发,包括必要的头文件包含、初始化和选择点集合的具体实现。 ... [详细]
  • 通过将常用的外部命令集成到VSCode中,可以提高开发效率。本文介绍如何在VSCode中配置和使用自定义的外部命令,从而简化命令执行过程。 ... [详细]
  • 在 CentOS 6.4 上安装 QT5 并启动 Qt Creator 时,可能会遇到缺少 GLIBCXX_3.4.15 的问题。这是由于系统中的 libstdc++.so.6 版本过低。本文将详细介绍如何通过更新 GCC 版本来解决这一问题。 ... [详细]
  • C语言中全部可用的数学函数有哪些?2.longlabs(longn);求长整型数的绝对值。3.doublefabs(doublex);求实数的绝对值。4.doublefloor(d ... [详细]
  • 本文将带你快速了解 SpringMVC 框架的基本使用方法,通过实现一个简单的 Controller 并在浏览器中访问,展示 SpringMVC 的强大与简便。 ... [详细]
  • 本文介绍了在 Java 编程中遇到的一个常见错误:对象无法转换为 long 类型,并提供了详细的解决方案。 ... [详细]
  • 本文详细介绍了 PHP 中对象的生命周期、内存管理和魔术方法的使用,包括对象的自动销毁、析构函数的作用以及各种魔术方法的具体应用场景。 ... [详细]
  • 本文总结了一些开发中常见的问题及其解决方案,包括特性过滤器的使用、NuGet程序集版本冲突、线程存储、溢出检查、ThreadPool的最大线程数设置、Redis使用中的问题以及Task.Result和Task.GetAwaiter().GetResult()的区别。 ... [详细]
  • 本文对SQL Server系统进行了基本概述,并深入解析了其核心功能。SQL Server不仅提供了强大的数据存储和管理能力,还支持复杂的查询操作和事务处理。通过MyEclipse、SQL Server和Tomcat的集成开发环境,可以高效地构建银行转账系统。在实现过程中,需要确保表单参数与后台代码中的属性值一致,同时在Servlet中处理用户登录验证,以确保系统的安全性和可靠性。 ... [详细]
  • 本指南介绍了如何在ASP.NET Web应用程序中利用C#和JavaScript实现基于指纹识别的登录系统。通过集成指纹识别技术,用户无需输入传统的登录ID即可完成身份验证,从而提升用户体验和安全性。我们将详细探讨如何配置和部署这一功能,确保系统的稳定性和可靠性。 ... [详细]
author-avatar
海峰2502853427
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有