android中nfc功能流程图解析及代码演示_第1页
android中nfc功能流程图解析及代码演示_第2页
android中nfc功能流程图解析及代码演示_第3页
已阅读5页,还剩5页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

Android中NFC功能流程图解析及代码演示在Android4.0推出的时候,一个非常引人注目的功能就是NFC(NearFieldCommunication).NearFieldCommunication(NFC)isasetofshort-rangewirelesstechnologies,typicallyrequiringadistanceof4cmorlesstoinitiateaconnection.NFCallowsyoutosharesmallpayloadsofdatabetweenanNFCtagandanAndroid-powereddevice,orbetweentwoAndroid-powereddevices.翻译:

近场通讯(NFC)是一系列短距离无线技术,一般需要4cm或者更短去初始化连接。近场通讯(NFC)允许你在NFCtag和Android设备或者两个Android设备间共享小负载数据。典型的应用为刷卡应用,如刷信用卡,公交车卡,吃饭的饭卡之类。腾讯2011年1月份文章“Android首款NFC近场通信应用推出”,说明了基于Android的NFC应用目前已经有了,得益于日本在手机刷卡的应用氛围。据2011年7月网易文章“PayPal推出Android系统NFC移动支付服务”报道,PayPal已经做了尝试了,相信这股风很快要刮到中国。

下面我们从技术的层面来分析一下这个技术。

官方的图片示例为:

这是NFC的开发流程,参考文章“【NFC在android中的应用API】”。相关的类代码有:NfcAdapter,NdefMessage,NdefRecord,ACTION_TAG_DISCOVERED.

在功能层面上,涉及到了NFC的读写功能。下面我们分别来做总结。

在代码层上面:使用的时候,需要在AndroidManifest.xml里面加一些权限以及属性。<uses-permissionandroid:name="android.permission.NFC"/>

<uses-featureandroid:name="android.hardware.nfc"android:required="true"/>

<uses-sdkandroid:minSdkVersion="10"/>这里注意,在AndroidVersion9的时候仅仅支持了ACTION_TAG_DISCOVERED,对于其他的需要10以上。在上面的基础上,还需要增加intent-filter的支持。<intent-filter>

<actionandroid:name="android.nfc.action.NDEF_DISCOVERED"/>

<categoryandroid:name="ent.category.DEFAULT"/>

<dataandroid:mimeType="text/plain"/>

</intent-filter>获取NfcAdapter的代码为publicstaticStringgetStatusNfcDevice(){

NfcAdapternfcAdapter=NfcAdapter.getDefaultAdapter();

if(nfcAdapter.isEnabled()){

Stringstatus="enabled";

returnstatus;

}

else{

Stringstatus="disabled";

returnstatus;

}

}处理函数为publicvoidonResume(){

super.onResume();

if(NfcAdapter.ACTION_NDEF_DISCOVERED.equals(getIntent().getAction())){

Parcelable[]rawMsgs=intent.getParcelableArrayExtra(NfcAdapter.EXTRA_NDEF_MESSAGES);

if(rawMsgs!=null){

msgs=newNdefMessage[rawMsgs.length];

for(inti=0;i<rawMsgs.length;i++){

msgs[i]=(NdefMessage)rawMsgs[i];

}

}

}

//processthemsgsarray

}完整的一个操作代码摘自GoogleAndroidNFCGuide代码(略加注释):packagecom.example.android.beam;

importandroid.app.Activity;

importandroid.content.Intent;

importandroid.nfc.NdefMessage;

importandroid.nfc.NdefRecord;

importandroid.nfc.NfcAdapter;

importandroid.nfc.NfcAdapter.CreateNdefMessageCallback;

importandroid.nfc.NfcEvent;

importandroid.os.Bundle;

importandroid.os.Parcelable;

importandroid.widget.TextView;

import

importjava.nio.charset.Charset;

//继承并实现接口CreateNdefMessageCallback方法createNdefMessage

publicclassBeamextendsActivityimplementsCreateNdefMessageCallback{

NfcAdaptermNfcAdapter;

TextViewtextView;

@Override

publicvoidonCreate(BundlesavedInstanceState){

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

TextViewtextView=(TextView)findViewById(R.id.textView);

//CheckforavailableNFCAdapter

//检测是否有NFC适配器

mNfcAdapter=NfcAdapter.getDefaultAdapter(this);

if(mNfcAdapter==null){

Toast.makeText(this,"NFCisnotavailable",Toast.LENGTH_LONG).show();

finish();

return;

}

//Registercallback

//注册回调函数

mNfcAdapter.setNdefPushMessageCallback(this,this);

}

@Override

publicNdefMessagecreateNdefMessage(NfcEventevent){

Stringtext=("Beammeup,Android!\n\n"+

"BeamTime:"+System.currentTimeMillis());

//回调函数,构造NdefMessage格式

NdefMessagemsg=newNdefMessage(

newNdefRecord[]{createMimeRecord(

"application/com.example.android.beam",text.getBytes())

//,NdefRecord.createApplicationRecord("com.example.android.beam")

});

returnmsg;

}

@Override

publicvoidonResume(){

super.onResume();

//ChecktoseethattheActivitystartedduetoanAndroidBeam

//得到是否检测到ACTION_NDEF_DISCOVERED触发

if(NfcAdapter.ACTION_NDEF_DISCOVERED.equals(getIntent().getAction())){

processIntent(getIntent());

}

}

//重载Activity类方法处理当新Intent到来事件

@Override

publicvoidonNewIntent(Intentintent){

//onResumegetscalledafterthistohandletheintent

setIntent(intent);

}

//关键处理函数,处理扫描到的NdefMessage

voidprocessIntent(Intentintent){

textView=(TextView)findViewById(R.id.textView);

Parcelable[]rawMsgs=intent.getParcelableArrayExtra(

NfcAdapter.EXTRA_NDEF_MESSAGES);

//onlyonemessagesentduringthebeam

NdefMessagemsg=(NdefMessage)rawMsgs[0];

//record0containstheMIMEtype,record1istheAAR,ifpresent

textView.setText(newString(msg.getRecords()[0].getPayload()));

}

publicNdefRecordcreateMimeRecord(StringmimeType,byte[]payload){

byte[]mimeBytes=mimeType.getBytes(Charset.forName("US-ASCII"));

NdefRecordmimeRecord=newNdefRecord(

NdefRecord.TNF_MIME_MEDIA,mimeBytes,newbyte[0],payload);

returnmimeRecord;

}

}上面代码还需要在AndroidManifest.xml文件里面添加<intent-filter>

<actionandroid:name="android.nfc.action.NDEF_DISCOVERED"/>

<categoryandroid:name="ent.category.DEFAULT"/>

<dataandroid:mimeType="application/com.example.android.beam"/>

</intent-filter>在对NFC设备进行写操作的时候,相关代码:privatevoidenableTagWriteMode(){

mWriteMode=true;

IntentFiltertagDetected=newIntentFilter(NfcAdapter.ACTION_TAG_DISCOVERED);

mWriteTagFilters=newIntentFilter[]{tagDetected};

mNfcAdapter.enableForegroundDispatch(this,mNfcPendingIntent,mWriteTagFilters,null);

}@Override

protectedvoidonNewIntent(Intentintent){

//Tagwritingmode

if(mWriteMode&&NfcAdapter.ACTION_TAG_DISCOVERED.equals(intent.getAction())){

TagdetectedTag=intent.getParcelableExtra(NfcAdapter.EXTRA_TAG);

if(NfcUtils.writeTag(NfcUtils.getPlaceidAsNdef(placeidToWrite),detectedTag)){

Toast.makeText(this,"Success:Wroteplaceidtonfctag",Toast.LENGTH_LONG)

.show();

NfcUtils.soundNotify(this);

}else{

Toast.makeText(this,"Writefailed",Toast.LENGTH_LONG).show();

}

}

}

publicstaticbooleanwriteTag(NdefMessagemessage,Tagtag){

intsize=message.toByteArray().length;

try{

Ndefndef=Ndef.get(tag);

if(ndef!=null){

ndef.connect();

if(!ndef.isWritable()){

returnfalse;

}

if(ndef.getMaxSize()<size){

returnfalse;

}

ndef.writeNdefMessage(message);

returntrue;

}else{

NdefFormatableformat=NdefFormatable.get(tag);

if(format!=null){

try{

format.connect();

format.format(message);

returntrue;

}catch(IOExceptione){

returnfalse;

}

}else{

returnfalse;

}

}

}catch

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论