HomeSort by relevance Sort by last modified time
    Searched refs:NDEF (Results 1 - 5 of 5) sorted by null

  /frameworks/base/core/java/android/nfc/tech/
TagTechnology.java 35 * pseudo-technologies or capabilities (for example {@link Ndef}, {@link NdefFormatable}).
45 * <li>{@link Ndef} on NFC Forum Type 1, Type 2, Type 3 or Type 4 compliant tags
56 * to make it NDEF compatible.
120 * This technology is an instance of {@link Ndef}.
124 public static final int NDEF = 6;
Ndef.java 32 * Provides access to NDEF content and operations on a {@link Tag}.
34 * <p>Acquire a {@link Ndef} object using {@link #get}.
36 * <p>NDEF is an NFC Forum data format. The data formats are implemented in
43 * formatted to contain NDEF data.
51 * {@link Ndef} on NFC Forum Tag Types 1-4, and implement all NDEF operations
54 * <p>Some vendors have their own well defined specifications for storing NDEF data
56 * should enumerate and implement {@link Ndef} under these vendor specifications
59 * <code>com.nxp.ndef.mifareclassic</code>.
62 * implement {@link Ndef} on MIFARE Classic tags formatted to NDEF
    [all...]
  /frameworks/base/core/java/android/nfc/
Tag.java 23 import android.nfc.tech.Ndef;
74 * <h4>2. NDEF data dispatch</h4>
75 * If the tag contains NDEF data the system inspects the first {@link NdefRecord} in the first
81 * data on a tag since NDEF data can be stored on many types of tags and doesn't depend on a
84 * NDEF data, or if no activity is registered
171 case TagTechnology.NDEF:
172 strings[i] = Ndef.class.getName();
223 techStringToCodeMap.put(Ndef.class.getName(), TagTechnology.NDEF);
291 * tag as NDEF adds the {@link Ndef} technology. The {@link rediscover
    [all...]
  /packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
NativeNfcTag.java 28 import android.nfc.tech.Ndef;
187 // 2) We are connecting to the ndef technology - always
189 if ((technology == TagTechnology.NDEF) ||
191 // special case for NDEF, this will cause switch to ISO_DEP frame intf
536 // This method exists to "patch in" the ndef technologies,
544 addTechnology(TagTechnology.NDEF, handle, libnfcType);
547 extras.putParcelable(Ndef.EXTRA_NDEF_MSG, msg);
548 extras.putInt(Ndef.EXTRA_NDEF_MAXLENGTH, maxLength);
549 extras.putInt(Ndef.EXTRA_NDEF_CARDSTATE, cardState);
550 extras.putInt(Ndef.EXTRA_NDEF_TYPE, getNdefType(libnfcType, javaType))
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/
NfcService.java 58 import android.nfc.tech.Ndef;
    [all...]

Completed in 473 milliseconds