How to write NDEF message to any MIME type of NFC tag?
问题 I have created this activity to create my own type of NFC tag public class WriteTag extends Activity { Tag tag; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.write_tag); } public void onResume() { super.onResume(); Intent intent = getIntent(); if (NfcAdapter.ACTION_NDEF_DISCOVERED.equals(intent.getAction())) { tag = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG); try { write("my/type", "this is payload text", tag);