gpt4 book ai didi

java - 从网站打开 Android 应用程序不起作用

转载 作者:太空狗 更新时间:2023-10-29 14:01:32 25 4
gpt4 key购买 nike

我想在我的简单 Android 应用程序中实现这样的功能:当用户在网络浏览器中访问某个链接(比方说 www.example.org)时 - Android 操作系统应该打开我的 Android 应用程序(如果已安装)。

我试过像这样使用 intent-filters:

<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">

<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:host="example.org"
android:pathPattern="/.*"
android:scheme="http" />

<data
android:host="www.example.org"
android:pathPattern="/.*"
android:scheme="http"/>
</intent-filter>

<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

但它在 google chrome 移动浏览器中根本不起作用。在 Firefox 中,当我访问该链接时,我会在搜索栏的右侧看到这样的 Android 图标:

enter image description here

当我按下该图标时 - 我的应用程序打开。但这仍然不是我想要实现的目标。

知道为什么我上面的代码不起作用吗?我尝试了在互联网上找到的多种 intent-filter 声明变体,但似乎没有任何效果。我有安装了 Android 6 的 nexus 5 设备。

最佳答案

我找到了解决问题的方法。整个互联网上到处都是老例子。

自 chrome 版本 25 起,谷歌对应用深度链接功能进行了细微更改。更多信息:https://developer.chrome.com/multidevice/android/intents

所以我的工作代码是这样的:

Android 端的 Intent 过滤器:

<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:host="launcher"
android:path="/"
android:scheme="test" />
</intent-filter>

网页html:

<a href="intent://launcher/#Intent;scheme=test;package=com.example.gediminas.myapplication;end">Launch app</a>

关于java - 从网站打开 Android 应用程序不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35267932/

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