nfc功能读写 demo

点此下载//这个demo是把这个程序作为一个手机启动选择的,只要一扫到卡片就会跳转到这个Activity。

只在当前Activity中有效参考:http://blog.csdn.net/zoeice/article/details/9714963,

代码完成后注意,在AndroidManifest.xml里面:

 <intent-filter>
     <action android:name="android.nfc.action.TAG_DISCOVERED">action>
      <category android:name="android.intent.category.DEFAULT">category>
 intent-filter>

改为:

<intent-filter>
      <action android:name="android.nfc.action.TAG_DISCOVERED">action>
      
 intent-filter>

 

转载于:https://www.cnblogs.com/zzw1994/p/6062107.html

你可能感兴趣的:(移动开发)