1 <HTML> 2 <BODY> 3 Provides access to Near Field Communication (NFC) functionality, allowing applications to read 4 NDEF message in NFC tags. A "tag" may actually be another device that appears as a tag. 5 6 <p>Here's a summary of the classes:</p> 7 8 <dl> 9 <dt>{@link android.nfc.NfcAdapter}</dt> 10 <dd>This represents the device's NFC adapter, which is your entry-point to performing NFC 11 operations. You can acquire an instance with {@link android.nfc.NfcAdapter#getDefaultAdapter}.</dd> 12 <dt>{@link android.nfc.NdefMessage}</dt> 13 <dd>Represents an NDEF data message, which is the standard format in which "records" 14 carrying data are transmitted between devices and tags. Your application can receive these 15 messages from an {@link android.nfc.NfcAdapter#ACTION_TAG_DISCOVERED} intent.</dd> 16 <dt>{@link android.nfc.NdefRecord}</dt> 17 <dd>Represents a record, which is delivered in a {@link android.nfc.NdefMessage} and describes the 18 type of data being shared and carries the data itself.</dd> 19 </dl> 20 21 <p class="note"><strong>Note:</strong> 22 Not all Android-powered devices provide NFC functionality.</p> 23 </BODY> 24 </HTML> 25