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
55 * to make it NDEF compatible.
119 * This technology is an instance of {@link Ndef}.
123 public static final int NDEF = 6;
Ndef.java 33 * Provides access to NDEF content and operations on a {@link Tag}.
35 * <p>Acquire a {@link Ndef} object using {@link #get}.
37 * <p>NDEF is an NFC Forum data format. The data formats are implemented in
44 * formatted to contain NDEF data.
52 * {@link Ndef} on NFC Forum Tag Types 1-4, and implement all NDEF operations
55 * <p>Some vendors have there own well defined specifications for storing NDEF data
57 * should enumerate and implement {@link Ndef} under these vendor specifications
60 * <code>com.nxp.ndef.mifareclassic</code>.
63 * 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;
72 * <h4>2. NDEF data dispatch</h4>
73 * If the tag contains NDEF data the system inspects the first {@link NdefRecord} in the first
79 * data on a tag since NDEF data can be stored on many types of tags and doesn't depend on a
82 * NDEF data, or if no activity is registered
169 case TagTechnology.NDEF:
170 strings[i] = Ndef.class.getName();
243 * tag as NDEF adds the {@link Ndef} technology. The {@link rediscover}
  /packages/apps/Nfc/src/com/android/nfc/nxp/
NativeNfcTag.java 25 import android.nfc.tech.Ndef;
168 // 2) We are connecting to the ndef technology - always
170 if ((technology == TagTechnology.NDEF) ||
480 // This method exists to "patch in" the ndef technologies,
488 addTechnology(TagTechnology.NDEF, handle, libnfcType);
491 extras.putParcelable(Ndef.EXTRA_NDEF_MSG, msg);
492 extras.putInt(Ndef.EXTRA_NDEF_MAXLENGTH, maxLength);
493 extras.putInt(Ndef.EXTRA_NDEF_CARDSTATE, cardState);
494 extras.putInt(Ndef.EXTRA_NDEF_TYPE, getNdefType(libnfcType, javaType));
498 // including a NULL ref for the NDEF tech we generated above
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/
NfcService.java 53 import android.nfc.tech.Ndef;
615 Log.i(TAG, "enabling NDEF Push");
633 Log.i(TAG, "disabling NDEF Push");
    [all...]

Completed in 268 milliseconds