OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NDEF
(Results
1 - 6
of
6
) 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
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
;
73
* <h4>2.
NDEF
data dispatch</h4>
74
* If the tag contains
NDEF
data the system inspects the first {@link NdefRecord} in the first
80
* data on a tag since
NDEF
data can be stored on many types of tags and doesn't depend on a
83
*
NDEF
data, or if no activity is registered
170
case TagTechnology.
NDEF
:
171
strings[i] =
Ndef
.class.getName();
247
* tag as
NDEF
adds the {@link
Ndef
} technology. The {@link rediscover}
/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
NativeNfcTag.java
26
import android.nfc.tech.
Ndef
;
171
// 2) We are connecting to the
ndef
technology - always
173
if ((technology == TagTechnology.
NDEF
) ||
175
// special case for
NDEF
, this will cause switch to ISO_DEP frame intf
506
// This method exists to "patch in" the
ndef
technologies,
514
addTechnology(TagTechnology.
NDEF
, handle, libnfcType);
517
extras.putParcelable(
Ndef
.EXTRA_NDEF_MSG, msg);
518
extras.putInt(
Ndef
.EXTRA_NDEF_MAXLENGTH, maxLength);
519
extras.putInt(
Ndef
.EXTRA_NDEF_CARDSTATE, cardState);
520
extras.putInt(
Ndef
.EXTRA_NDEF_TYPE, getNdefType(libnfcType, javaType))
[
all
...]
/packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
NativeNfcTag.java
26
import android.nfc.tech.
Ndef
;
171
// 2) We are connecting to the
ndef
technology - always
173
if ((technology == TagTechnology.
NDEF
) ||
504
// This method exists to "patch in" the
ndef
technologies,
512
addTechnology(TagTechnology.
NDEF
, handle, libnfcType);
515
extras.putParcelable(
Ndef
.EXTRA_NDEF_MSG, msg);
516
extras.putInt(
Ndef
.EXTRA_NDEF_MAXLENGTH, maxLength);
517
extras.putInt(
Ndef
.EXTRA_NDEF_CARDSTATE, cardState);
518
extras.putInt(
Ndef
.EXTRA_NDEF_TYPE, getNdefType(libnfcType, javaType));
522
// including a NULL ref for the
NDEF
tech we generated above
[
all
...]
/packages/apps/Nfc/src/com/android/nfc/
NfcService.java
62
import android.nfc.tech.
Ndef
;
[
all
...]
Completed in 211 milliseconds