gpt4 book ai didi

Android:我可以使用 MIME 类型 vnd.bluetooth.ep.oob 过滤 NFC 标签吗?

转载 作者:行者123 更新时间:2023-11-29 01:51:53 25 4
gpt4 key购买 nike

我希望我的 Android 应用能够对包含蓝牙 OOB 设置记录的 NFC 标签使用react。我的 list 包含:

<!-- intent filter for matching an NDEF MIME message. -->
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="application/vnd.bluetooth.ep.oob"/>
</intent-filter>

但是,当我扫描标签时,应用程序没有启动,而是启动了蓝牙连接。有什么办法可以在我的应用程序中处理这些标签吗? (注意:其他 Intent 过滤器,例如,URI 标签可以很好地启动我的应用程序,因此它可能特定于此 MIME 类型。)

最佳答案

因为这是一个 Android Application Record ,它会绕过所有过滤器。但是,您可以做的是让您的 Activity 实现 Foreground Dispatch

使用它,您可以打开 Activity 以拦截您将在

中收到的 Intent
public void onNewIntent(Intent intent)

当使用 Intent 过滤器方法时,这些 Intent 通过 onResume() 传递,尽管这种情况有所不同。当应用实际处于 Activity 状态时,使用前台调度时,标签通过 onNewIntent(Intent intent) 传送。

过滤器类型的标签通过 onResume() 传递,因为应用程序是从其他地方启动的。根据标签的不同, Intent 会有不同的操作,您可以在 the Android SDK Docs 阅读所有相关信息。 .

关于Android:我可以使用 MIME 类型 vnd.bluetooth.ep.oob 过滤 NFC 标签吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17506361/

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