如果您的应用程序已经具有适用于 Android Beam(P2P 连接)的 MIME 类型“application/com.sticknotes.android”的意图过滤器,那么它也将适用于包含具有相同 MIME 类型的 NDEF 消息的标签。Android Beam 和标签发现都ACTION_NDEF_DISCOVERED
在接收/读取设备中生成意图。
要将此类 NDEF 消息写入 MIFARE Classic 1K 标签,您可以创建一个简单的应用程序来为您执行此操作。在这个应用程序的清单文件中放置:
<activity>
...
<intent-filter>
<action android:name="android.nfc.action.TECH_DISCOVERED"/>
</intent-filter>
<meta-data android:name="android.nfc.action.TECH_DISCOVERED"
android:resource="@xml/nfc_tech_filter" />
...
</activity>
并在项目的res/xml
文件夹中放置一个nfc_tech_filter.xml
包含以下内容的文件:
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<tech-list>
<tech>android.nfc.tech.MifareClassic</tech>
</tech-list>
</resources>
在应用程序Activity
中:
onCreate(Bundle savedInstanceState) {
// put code here to set up your app
...
// create NDEF message
String mime = "application/com.sticknotes.android";
byte[] payload = ... ; // put your payload here
NdefRecord record = new NdefRecord(NdefRecord.TNF_MIME_MEDIA, mime.toBytes(), null, payload);
NdefMessage ndef = new NdefMessage(new NdefRecord[] {ndef});
// write NDEF message
Intent intent = getIntent();
if (NfcAdapter.ACTION_TECH_DISCOVERED.equals(intent.getAction()) {
Tag tag = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG);
NdefFormatable nf = NdefFormatable.get(tag);
if (nf != null) {
// tag not yet formatted with NDEF
try {
nf.connect();
nf.format(ndef);
nf.close();
} catch (IOException e) {
// tag communication error occurred
}
} else {
Ndef n = Ndef.get(tag);
if (n != null && n.isWritable() ) {
// can write NDEF
try {
n.connect();
n.writeNdefMessage(ndef);
n.close();
} catch (IOException e) {
// tag communication error occurred
}
}
}
}
}
这会格式化 NDEF 消息并将其写入未格式化(空白)的 MIFARE Classic 标签,或覆盖已使用 NDEF 格式化的标签。如果您想编写除 MIFARE Classic 之外的其他标签类型,请nfc_tech_filter.xml
进行相应调整。