码迷,mamicode.com
首页 > 其他好文 > 详细

不同技术的过滤条件的定义

时间:2015-08-31 13:22:23      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:

 在 menifest中定义

 

        

 <intent-filter>

                <action android:name="android.nfc.action.TAG_DISCOVERED" />

                <category android:name="android.intent.category.DEFAULT" />

            </intent-filter>

      <meta-data

                android:name="android.nfc.action.TECH_DISCOVERED"

                android:resource="@xml/nfc_tech_filter" />

 

 

在xml中定义

<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">

    <tech-list>

        <tech>android.nfc.tech.MifareUltralight</tech>

        <tech>android.nfc.tech.Ndef</tech>

        <tech>android.nfc.tech.NfcA</tech>

    </tech-list>

    <tech-list>

        <tech>android.nfc.tech.MifareClassic</tech>

        <tech>android.nfc.tech.Ndef</tech>

        <tech>android.nfc.tech.NfcA</tech>

    </tech-list>

   

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

 </resources>

 

MifareUltralight,MifareClassic,IsoDep不同时并存,所以要分开写。

 

 

不同技术的过滤条件的定义

标签:

原文地址:http://www.cnblogs.com/hhudata/p/4772792.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!