我正在尝试将NDEF消息写入标记。以下是我的代码。我在IDE中使用调试器运行代码,但是在执行了行
之后Tag tag = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG);
tag
是null
(我认为这意味着没有找到任何标记)并且我无法编写NDEF消息。相反,我得到一个NullPointerException。
public class MainActivity extends Activity {
private BluetoothAdapter mBluetoothAdapter;
private NfcAdapter mNfcAdapter;
static final byte[] TYPE_BT_OOB = "application/vnd.bluetooth.ep.oob".
getBytes(Charset.forName("US_ASCII"));
private NdefMessage mNdefMessage;
String mLocalBluetoothAddress;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mNfcAdapter = NfcAdapter.getDefaultAdapter(this);
mNdefMessage = createHandoverRequestMessage();
Intent intent = getIntent();
//Intent intent = new Intent();
String action = intent.getAction();
Tag tag = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG);// I am getting only Null in tag here//
try {
Ndef ndef = Ndef.get(tag);
ndef.connect();
try {
ndef.writeNdefMessage(mNdefMessage);
} catch (FormatException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
ndef.close();
} catch (IOException e) {
Log.e("TagDispatch", e.toString());
}
}
这是我的清单文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.nfcdemov5"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="16" />
<uses-permission android:name="android.permission.NFC" />
<uses-feature android:name="android.hardware.nfc" android:required="true" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:debuggable="true" >
<activity
android:name="com.example.nfcdemov5.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="application/vnd.bluetooth.ep.oob" />
</intent-filter>
</activity>
</application>
</manifest>
答案 0 :(得分:1)
通过触摸NFC标签触发NFC事件。因此,当您通过单击启动器图标(或从开发环境启动)打开应用程序时,ANdroid将无法生成NFC事件(即使您的设备已经放置在标签顶部)。 / p>
因此,您需要做的是为NFC活动注册您的应用。您可以通过清单或在应用程序在前台运行时通过前台调度系统执行此操作。由于您希望能够只写入任何标记,无论当前在哪个数据上,我建议您坚持使用前台调度系统,不要在AndroidManifest.xml中注册任何NFC事件。
您首先要使用enableForegroundDispatch()
中的onResume()
方法注册接收任何标记的事件:
public void onResume() {
super.onResume();
NfcAdapter nfcAdapter = NfcAdapter.getDefaultAdapter(this);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, new Intent(this, getClass()).addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP), 0);
nfcAdapter.enableForegroundDispatch(this, pendingIntent, null, null);
}
此外,您必须在活动离开前景之前再次禁用前台调度(因此,在onPause()
中):
public void onPause() {
super.onPause();
NfcAdapter nfcAdapter = NfcAdapter.getDefaultAdapter(this);
nfcAdapter.disableForegroundDispatch(this);
}
最后,您可以使用onNewIntent()
方法处理代码。因此,您移动您目前必须处理标记的代码onCreate()
到onNewIntent()
:
public void onNewIntent(Intent intent) {
if (NfcAdapter.ACTION_TAG_DISCOVERED.equals(intent.getAction())) {
Tag tag = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG);
if (tag != null) {
Ndef ndef = Ndef.get(tag);
if (ndef != null) {
try {
ndef.connect();
ndef.writeNdefMessage(createHandoverRequestMessage());
} catch (Exception e) {
Log.e("TagWriting", e.toString());
} finally {
try {
ndef.close();
} catch (Exception e) {
}
}
}
}
}
}
您可以通过在单独的线程上执行实际写入来进一步优化此功能,因为不应在UI线程上执行阻止IO操作,因为它们可能会导致应用程序冻结。