gpt4 book ai didi

javascript - 从网页打开 android 应用程序

转载 作者:IT老高 更新时间:2023-10-28 23:32:09 25 4
gpt4 key购买 nike

我知道要从网页中的链接打开 android 应用程序,我们必须在 AndroidManifest.xml 中编写以下内容:

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

问题是我是这样写的:

        <intent-filter>
<action android:name="my_action"/>
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="my_scheme" android:host="my_host" />
</intent-filter>

我没有添加 android.intent.action.VIEW 而是添加了我自己的操作。无法更改,因为版本已经发布了。

问题是,

if there's a way to make the application run from JavaScript or simple html page, maybe by defining the specific action in the page?

谢谢,

帕斯。


已解决:

感谢大卫,我找到了解决方案:

<a href="intent://my_host#Intent;scheme=my_scheme;action=my_action;end">Link to my stuff</a> 

最佳答案

试试这个:

让你的链接看起来像这样:

<a href="intent:#Intent;action=my_action;end">Link to my stuff</a>

也可以看看 Launch custom android application from android browser

关于javascript - 从网页打开 android 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11773958/

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