HomeSort by relevance Sort by last modified time
    Searched defs:nfc (Results 1 - 25 of 205) sorted by null

1 2 3 4 5 6 7 8 9

  /frameworks/base/core/java/android/nfc/
FormatException.java 17 package android.nfc;
TagLostException.java 17 package android.nfc;
NfcEvent.java 17 package android.nfc;
20 * Wraps information associated with any NFC event.
37 * The {@link NfcAdapter} associated with the NFC event.
42 * The major LLCP version number of the peer associated with the NFC event.
47 * The minor LLCP version number of the peer associated with the NFC event.
NfcManager.java 17 package android.nfc;
33 * <p>For more information about using NFC, read the
34 * <a href="{@docRoot}guide/topics/nfc/index.html">Near Field Communication</a> developer guide.</p>
62 * Get the default NFC Adapter for this device.
64 * @return the default NFC Adapter
TechListParcel.java 17 package android.nfc;
  /frameworks/base/core/java/android/nfc/cardemulation/
OffHostApduService.java 1 package android.nfc.cardemulation;
12 * extended to describe one or more NFC applications that are residing
18 * please read the <a href="{@docRoot}guide/topics/nfc/ce.html">
19 * NFC card emulation developer guide.</a></p>
22 * <h3>NFC Protocols</h3>
23 * <p>Off-host applications represented by this class are based on the NFC-Forum ISO-DEP
29 * <p>When a remote NFC device wants to talk to your
30 * off-host NFC application, it sends a so-called
81 * &lt;action android:name="android.nfc.cardemulation.action.OFF_HOST_APDU_SERVICE"/&gt;
83 * &lt;meta-data android:name="android.nfc.cardemulation.off_host_apdu_ervice" android:resource="@xml/apduservice"/&gt
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/
LlcpException.java 17 package com.android.nfc;
19 import android.nfc.ErrorCodes;
LlcpPacket.java 17 package com.android.nfc;
NfcBackupAgent.java 17 package com.android.nfc;
  /packages/apps/Nfc/src/com/android/nfc/snep/
SnepException.java 17 package com.android.nfc.snep;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/
NfcDialogs.java 17 package com.android.cts.verifier.nfc;
27 /** Class containing methods to create common dialogs for NFC activities. */
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/
OffHostService.java 1 package com.android.cts.verifier.nfc.hce;
AccessService.java 1 package com.android.cts.verifier.nfc.hce;
CommandApdu.java 1 package com.android.cts.verifier.nfc.hce;
LargeNumAidsService.java 1 package com.android.cts.verifier.nfc.hce;
PaymentService1.java 1 package com.android.cts.verifier.nfc.hce;
PaymentService2.java 1 package com.android.cts.verifier.nfc.hce;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/tech/
TagTester.java 17 package com.android.cts.verifier.nfc.tech;
19 import android.nfc.Tag;
  /packages/apps/Nfc/src/com/android/nfc/cardemulation/
DefaultRemovedActivity.java 17 package com.android.nfc.cardemulation;
37 ap.mMessage = getString(com.android.nfc.R.string.default_pay_app_removed);
  /developers/build/prebuilts/gradle/BeamLargeFiles/Application/src/main/java/com/example/android/beamlargefiles/
BeamLargeFilesFragment.java 21 import android.nfc.NfcAdapter;
22 import android.nfc.NfcEvent;
28 * This class demonstrates how to use Beam to send files too large to transfer reliably via NFC.
30 * <p>While any type of data can be placed into a normal NDEF messages, NFC is not considered
32 * Because NFC requires devices to be in extremely close proximity, this is not ideal.
34 * <p>Instead, Android 4.2+ devices can use NFC to perform an initial handshake, before handing
69 NfcAdapter nfc = NfcAdapter.getDefaultAdapter(a); local
70 if (nfc != null) {
71 Log.w(TAG, "NFC available. Setting Beam Push URI callback");
72 nfc.setBeamPushUrisCallback(this, a)
    [all...]
  /developers/samples/android/connectivity/nfc/BeamLargeFiles/Application/src/main/java/com/example/android/beamlargefiles/
BeamLargeFilesFragment.java 21 import android.nfc.NfcAdapter;
22 import android.nfc.NfcEvent;
28 * This class demonstrates how to use Beam to send files too large to transfer reliably via NFC.
30 * <p>While any type of data can be placed into a normal NDEF messages, NFC is not considered
32 * Because NFC requires devices to be in extremely close proximity, this is not ideal.
34 * <p>Instead, Android 4.2+ devices can use NFC to perform an initial handshake, before handing
69 NfcAdapter nfc = NfcAdapter.getDefaultAdapter(a); local
70 if (nfc != null) {
71 Log.w(TAG, "NFC available. Setting Beam Push URI callback");
72 nfc.setBeamPushUrisCallback(this, a)
    [all...]
  /development/samples/browseable/BeamLargeFiles/src/com.example.android.beamlargefiles/
BeamLargeFilesFragment.java 21 import android.nfc.NfcAdapter;
22 import android.nfc.NfcEvent;
28 * This class demonstrates how to use Beam to send files too large to transfer reliably via NFC.
30 * <p>While any type of data can be placed into a normal NDEF messages, NFC is not considered
32 * Because NFC requires devices to be in extremely close proximity, this is not ideal.
34 * <p>Instead, Android 4.2+ devices can use NFC to perform an initial handshake, before handing
69 NfcAdapter nfc = NfcAdapter.getDefaultAdapter(a); local
70 if (nfc != null) {
71 Log.w(TAG, "NFC available. Setting Beam Push URI callback");
72 nfc.setBeamPushUrisCallback(this, a)
    [all...]
  /developers/build/prebuilts/gradle/CardReader/Application/src/main/java/com/example/android/cardreader/
CardReaderFragment.java 20 import android.nfc.NfcAdapter;
37 // activity is interested in NFC-A devices (including other Android devices), and that the
83 NfcAdapter nfc = NfcAdapter.getDefaultAdapter(activity); local
84 if (nfc != null) {
85 nfc.enableReaderMode(activity, mLoyaltyCardReader, READER_FLAGS, null);
92 NfcAdapter nfc = NfcAdapter.getDefaultAdapter(activity); local
93 if (nfc != null) {
94 nfc.disableReaderMode(activity);
  /developers/samples/android/connectivity/nfc/CardReader/Application/src/main/java/com/example/android/cardreader/
CardReaderFragment.java 20 import android.nfc.NfcAdapter;
37 // activity is interested in NFC-A devices (including other Android devices), and that the
83 NfcAdapter nfc = NfcAdapter.getDefaultAdapter(activity); local
84 if (nfc != null) {
85 nfc.enableReaderMode(activity, mLoyaltyCardReader, READER_FLAGS, null);
92 NfcAdapter nfc = NfcAdapter.getDefaultAdapter(activity); local
93 if (nfc != null) {
94 nfc.disableReaderMode(activity);
  /development/samples/browseable/CardReader/src/com.example.android.cardreader/
CardReaderFragment.java 20 import android.nfc.NfcAdapter;
37 // activity is interested in NFC-A devices (including other Android devices), and that the
83 NfcAdapter nfc = NfcAdapter.getDefaultAdapter(activity); local
84 if (nfc != null) {
85 nfc.enableReaderMode(activity, mLoyaltyCardReader, READER_FLAGS, null);
92 NfcAdapter nfc = NfcAdapter.getDefaultAdapter(activity); local
93 if (nfc != null) {
94 nfc.disableReaderMode(activity);

Completed in 1220 milliseconds

1 2 3 4 5 6 7 8 9