Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试编写一个应用程序来编写带有联系方式的 NFC 标签。你能告诉我联系卡的 NdefRecord 的“类型”应该是什么。
NdefRecord record = new NdefRecord(NdefRecord.TNF_WELL_KNOWN, "RTD_URI".getBytes(), new byte[] {}, messagebytes);
当您使用 vCard 格式的联系方式时,您可以使用
NdefRecord record = new NdefRecord(NdefRecord.TNF_MIME_MEDIA, "text/vcard".getBytes(), new byte[] {}, messagebytes);
messagebytes实际的 vCard 数据在哪里。
messagebytes