Search in sources :

Example 21 with INfcTag

use of android.nfc.INfcTag in project android_frameworks_base by crdroidandroid.

the class Ndef method writeNdefMessage.

/**
     * Overwrite the {@link NdefMessage} on this tag.
     *
     * <p>This is an I/O operation and will block until complete. It must
     * not be called from the main application thread. A blocked call will be canceled with
     * {@link IOException} if {@link #close} is called from another thread.
     *
     * <p class="note">Requires the {@link android.Manifest.permission#NFC} permission.
     *
     * @param msg the NDEF Message to write, must not be null
     * @throws TagLostException if the tag leaves the field
     * @throws IOException if there is an I/O failure, or the operation is canceled
     * @throws FormatException if the NDEF Message to write is malformed
     */
public void writeNdefMessage(NdefMessage msg) throws IOException, FormatException {
    checkConnected();
    try {
        INfcTag tagService = mTag.getTagService();
        if (tagService == null) {
            throw new IOException("Mock tags don't support this operation.");
        }
        int serviceHandle = mTag.getServiceHandle();
        if (tagService.isNdef(serviceHandle)) {
            int errorCode = tagService.ndefWrite(serviceHandle, msg);
            switch(errorCode) {
                case ErrorCodes.SUCCESS:
                    break;
                case ErrorCodes.ERROR_IO:
                    throw new IOException();
                case ErrorCodes.ERROR_INVALID_PARAM:
                    throw new FormatException();
                default:
                    // Should not happen
                    throw new IOException();
            }
        } else {
            throw new IOException("Tag is not ndef");
        }
    } catch (RemoteException e) {
        Log.e(TAG, "NFC service dead", e);
    }
}
Also used : INfcTag(android.nfc.INfcTag) IOException(java.io.IOException) RemoteException(android.os.RemoteException) FormatException(android.nfc.FormatException)

Aggregations

INfcTag (android.nfc.INfcTag)21 RemoteException (android.os.RemoteException)21 IOException (java.io.IOException)21 FormatException (android.nfc.FormatException)15 NdefMessage (android.nfc.NdefMessage)7 TagLostException (android.nfc.TagLostException)6