一个空的NFC标签属于哪种Intent类型?

时间:2012-07-10 11:48:59

标签: android android-intent nfc

我无法匹配哪个Intent过滤器用于空NFC标签。我能够使用NDEF数据检测标签。但是,当我点击一个空的NFC标签时,没有任何事情发生。

以下是我AndroidManifest.xml

中的过滤器部分
<intent-filter>
    <action android:name="android.nfc.action.NDEF_DISCOVERED"/>
    <category android:name="android.intent.category.DEFAULT"/>
    <data android:mimeType="text/plain" />
</intent-filter>
<intent-filter>
    <action android:name="android.nfc.action.TECH_DISCOVERED"/>
</intent-filter>
<intent-filter>
    <action android:name="android.nfc.action.TAG_DISCOVERED"/>
</intent-filter>
<meta-data android:name="android.nfc.action.TECH_DISCOVERED"
    android:resource="@xml/nfc_tech_filter" />

2 个答案:

答案 0 :(得分:4)

我发现在我的nfc技术过滤器列表中执行以下操作:

<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>

与我的任何标签都不匹配,因为它们被评估为逻辑AND。为了使我的应用程序与我的NFC标签匹配,我刚刚为我的标签创建了一个特定的标签技术列表,如下所示:

<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
    <tech-list>
        <tech>android.nfc.tech.NfcA</tech>
        <tech>android.nfc.tech.Ndef</tech>
        <tech>android.nfc.tech.MifareUltralight</tech>
    </tech-list>
    <tech-list>
        <tech>android.nfc.tech.NfcA</tech>        
    </tech-list>
    <tech-list>
        <tech>android.nfc.tech.Ndef</tech>
    </tech-list>
    <tech-list>
        <tech>android.nfc.tech.MifareUltralight</tech>
    </tech-list>
</resources>

这会将标记与(NfcA AND Ndef AND MifareUltralight) OR NfcA OR Ndef OR MifareUltralight匹配。希望这可以帮助那些目前遇到这个问题的人。

答案 1 :(得分:3)

您应该将<category android:name="android.intent.category.DEFAULT"/>添加到TECH_DISOVERED(和TAG_DISCOVERED)过滤器中。否则它将不匹配。