我正在开发一个应用程序,需要在扫描不包含任何数据(?)的NFC标签时打开,除了ID.
数据库中的项目应该由该ID标识,我不应该在这些标签上写任何东西
我可以通过调用让设备在前台模式下扫描标签
enableForegrounddispatch()
并且它返回包含所需数据EXTRA_ID的新意图
但是当应用程序在后台并且我扫描标签时,我可以听到系统声音扫描完成但是应用程序没有打开
我在我的应用程序清单上有以下intent过滤器
<intent-filter> <action androID:name="androID.nfc.action.TAG_disCOVERED"/> </intent-filter> <intent-filter> <action androID:name="androID.nfc.action.TECH_disCOVERED"/> </intent-filter> <Meta-data androID:name="androID.nfc.action.TECH_disCOVERED" androID:resource="@xml/nfc_tech_filter" />
nfc_tech_filter.xml包含AndroID支持的所有标记
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <tech-List> <tech>androID.nfc.tech.IsoDep</tech> <tech>androID.nfc.tech.NfcA</tech> <tech>androID.nfc.tech.NfcB</tech> <tech>androID.nfc.tech.NfcF</tech> <tech>androID.nfc.tech.NfcV</tech> <tech>androID.nfc.tech.Ndef</tech> <tech>androID.nfc.tech.NdefFormatable</tech> <tech>androID.nfc.tech.mifareClassic</tech> <tech>androID.nfc.tech.mifareultralight</tech> </tech-List></resources>
我正在扫描的标签是androID.nfc.tech.mifareultralight,androID.nfc.tech.NfcA,androID.nfc.tech.NdefFormatable类型
我只对标签ID感兴趣
是否可以在标签扫描时打开/通知我的活动,而无需在标签上写任何内容?
解决方法:
正如您似乎已经发现自己,可以使用TECH_disCOVERED意图过滤器:
<intent-filter> <action androID:name="androID.nfc.action.TECH_disCOVERED"/></intent-filter><Meta-data androID:name="androID.nfc.action.TECH_disCOVERED" androID:resource="@xml/nfc_tech_filter" />
问题是您的技术过滤器XML文件.您指定的技术过滤器转换为*匹配任何标签,即IsoDep和NfcA以及NfcB和NfcF等.由于其中一些标签技术(例如Nfc [A | B | F | V])是互斥的,所以没有标签将匹配此条件.
您可以通过指定与逻辑或所有这些技术匹配的技术过滤器来克服这一点:
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <tech-List> <tech>androID.nfc.tech.IsoDep</tech> </tech-List> <tech-List> <tech>androID.nfc.tech.NfcA</tech> </tech-List> <tech-List> <tech>androID.nfc.tech.NfcB</tech> </tech-List> <tech-List> <tech>androID.nfc.tech.NfcF</tech> </tech-List> <tech-List> <tech>androID.nfc.tech.NfcV</tech> </tech-List> <tech-List> <tech>androID.nfc.tech.Ndef</tech> </tech-List> <tech-List> <tech>androID.nfc.tech.NdefFormatable</tech> </tech-List> <tech-List> <tech>androID.nfc.tech.mifareClassic</tech> </tech-List> <tech-List> <tech>androID.nfc.tech.mifareultralight</tech> </tech-List> <tech-List> <tech>androID.nfc.tech.Nfcbarcode</tech> </tech-List></resources>
或者您已经发现您的标签是NfcA,您也可以简单地匹配NfcA:
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <tech-List> <tech>androID.nfc.tech.NfcA</tech> </tech-List></resources>
总结 以上是内存溢出为你收集整理的发现NFC_TECH时打开Android Activity全部内容,希望文章能够帮你解决发现NFC_TECH时打开Android Activity所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)