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