Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've a Mifare Classic1K NFC tag but I'm unable to write any content over it. Its writable but seems like it is not formatted in NDEF which is a pre-requisite for Android devices to be write data on it. Any suggestion is welcome.

P.S: I do have a TRF7960 RF Antenna if that can help to format it.

share|improve this question
1  
Make sure the Android phone you are using a phone that can read Mifare Classic tags. Android supports it, but not all Android phones do due to licensing issues. – Ben Dec 21 '12 at 18:23

1 Answer

Given an android.nfc.Tag object named tag, to format it, use:

    NdefFormatable formatable=NdefFormatable.get(tag);

    if (formatable != null) {
      try {
        formatable.connect();

        try {
          formatable.format(msg);
        }
        catch (Exception e) {
          // let the user know the tag refused to format
        }
      }
      catch (Exception e) {
        // let the user know the tag refused to connect
      }
      finally {
        formatable.close();
      }
    }
    else {
      // let the user know the tag cannot be formatted
    }
share|improve this answer
Will this code be able to format it even if its not in NDEF format right now? – pansp Dec 21 '12 at 11:08
@pansp: If the tag is NDEF-formattable, yes. Not shown is code to detect whether or not it is already in NDEF format. You can see the full sample project I pulled this from here: github.com/commonsguy/cw-omnibus/tree/master/NFC/SecretAgentMan – CommonsWare Dec 21 '12 at 12:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.