nfc功能读写 demo
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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> <!--<category android:name="android.intent.category.DEFAULT"></category>--> </intent-filter>
以上是关于nfc功能读写 demo的主要内容,如果未能解决你的问题,请参考以下文章