gpt4 book ai didi

android - 在黑莓和安卓 : calling native application from a web browser?

转载 作者:行者123 更新时间:2023-11-29 16:27:40 25 4
gpt4 key购买 nike

在 iPhone 上,应用程序可以将新的协议(protocol)名称关联到自身,这样如果用户在网络浏览器中键入“myapp://xxx”,它就会调用该应用程序。

BlackBerry 或 Android 有可能吗?

最佳答案

对于 Android,请查看此问题的答案:

Android Respond To URL in Intent

还有以下页面,尤其是在本页面上关于 android:scheme 的“数据类型”部分:

http://developer.android.com/guide/topics/intents/intents-filters.html

对于您的应用程序,您可以在 AndroidManifest.xml 中放入如下内容:

<intent-filter><action android:name="android.intent.action.VIEW"></action>
<category android:name="android.intent.category.DEFAULT"></category>
<category android:name="android.intent.category.BROWSABLE"></category>
<data android:scheme="myapp"></data>
</intent-filter>

关于android - 在黑莓和安卓 : calling native application from a web browser?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1016497/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com