我正在尝试使用Android 开发人员链接createApplicationRecord(packagename)
中提到的添加应用程序记录,但我看到了一个错误:NdefMessage
未定义类型 NdefRecord 的方法 createApplicationRecord(String)
我已经从 Eclipse 更新了我的 Android SDK 管理器。这是代码的一部分:
private NdefMessage getMessageAsNdef() {
byte[] textBytes = mInfo.getBytes();
NdefRecord textRecord = new NdefRecord(NdefRecord.TNF_MIME_MEDIA,
"text/plain".getBytes(), new byte[] {}, textBytes);
return new NdefMessage(new NdefRecord[] { textRecord, NdefRecord.createApplicationRecord("com.nfcgeo.mypackage") });
}