HomeSort by relevance Sort by last modified time
    Searched full:nfcbarcode (Results 1 - 8 of 8) sorted by null

  /frameworks/base/core/java/android/nfc/tech/
NfcBarcode.java 26 * <p>Acquire an {@link NfcBarcode} object using {@link #get}.
29 public final class NfcBarcode extends BasicTagTechnology {
41 * Get an instance of {@link NfcBarcode} for the given tag.
43 * <p>Returns null if {@link NfcBarcode} was not enumerated in {@link Tag#getTechList}.
47 * @param tag an NfcBarcode compatible tag
48 * @return NfcBarcode object
50 public static NfcBarcode get(Tag tag) {
53 return new NfcBarcode(tag);
63 public NfcBarcode(Tag tag) throws RemoteException {
69 throw new NullPointerException("NfcBarcode tech extras are null.")
    [all...]
TagTechnology.java 53 * <li>{@link NfcBarcode}
152 * This technology is an instance of {@link NfcBarcode}.
  /packages/apps/Nfc/src/com/android/nfc/
NfcDispatcher.java 51 import android.nfc.tech.NfcBarcode;
319 NfcBarcode nfcBarcode = NfcBarcode.get(tag);
320 if (nfcBarcode != null && nfcBarcode.getType() == NfcBarcode.TYPE_KOVIO) {
321 message = decodeNfcBarcodeUri(nfcBarcode);
389 * Checks for the presence of a URL stored in a tag with tech NfcBarcode.
410 * The final two bytes of a tag with tech NfcBarcode are always reserved for CRC data
    [all...]
  /frameworks/base/core/java/android/nfc/
Tag.java 27 import android.nfc.tech.NfcBarcode;
190 strings[i] = NfcBarcode.class.getName();
229 techStringToCodeMap.put(NfcBarcode.class.getName(), TagTechnology.NFC_BARCODE);
NfcAdapter.java 266 * Setting this flag enables polling for NfcBarcode technology.
    [all...]
  /packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
NativeNfcTag.java 33 import android.nfc.tech.NfcBarcode;
736 extras.putInt(NfcBarcode.EXTRA_BARCODE_TYPE, NfcBarcode.TYPE_KOVIO);
  /compatibility/cdd/7_hardware-compatibility/
7_4_data-connectivity.md 321 http://developer.android.com/reference/android/nfc/tech/NfcBarcode.html)
  /packages/apps/Nfc/nci/jni/
NfcTag.cpp     [all...]

Completed in 145 milliseconds