gpt4 book ai didi

android - 通过 NFC 标签上的 URL 启动 Android 应用程序

转载 作者:搜寻专家 更新时间:2023-11-01 09:05:22 26 4
gpt4 key购买 nike

我正在写一些 NFC 标签的 URL 以 Intent 过滤主机名 - 如果安装了应用程序,则启动该应用程序;如果未安装该应用程序,则提供指向 google-play 的链接。不幸的是只有浏览器出现:

<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:host="example.com" android:scheme="http" />
</intent-filter>

最佳答案

Action 需要不同:

 <intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED"></action>
<category android:name="android.intent.category.DEFAULT"></category>
<data android:host="example.com" android:scheme="http" />
</intent-filter>

仍然不需要许可

关于android - 通过 NFC 标签上的 URL 启动 Android 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12264709/

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