如何使用 NFC 动作

How to use NFC ACTIONS

我正在尝试以编程方式注册接收器,以便在检测到 NFC 标签时收到通知。如我的代码所示,我注册了所需的操作,并以编程方式创建了广播接收器。我还在清单文件中添加了所需的权限,但问题是从未调用 onReceive

请让我知道我做错了什么以及如何解决它。

IntentFilter intentFilter1 = new IntentFilter();
intentFilter1.addAction("android.nfc.action.TAG_DISCOVERED");
registerReceiver(mBCR_TAG_DISCOVERED, intentFilter1);

private BroadcastReceiver mBCR_TAG_DISCOVERED = new BroadcastReceiver() {
    @Override
    public void onReceive(Context context, Intent intent) {
        String action = intent.getAction();
        mTv.setText("mBCR_TAG_DISCOVERED");
    }
};

AndroidManifest.xml:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="example.com.myapplication">

<uses-permission android:name="android.permission.NFC" />

<uses-feature
    android:name="android.hardware.nfc"
    android:required="true" />

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>

    </activity>
</application>

</manifest>

您需要在清单中注册您的接收器also.You 不需要在清单中添加接收器的操作

在您的 onCreate 方法中,您可以像这样注册一个接收器:

 private BroadcastReceiver receiver;

@Override
public void onCreate(Bundle savedInstanceState){

 // your oncreate code should be

 IntentFilter filter = new IntentFilter();
 filter.addAction("SOME_ACTION");
filter.addAction("SOME_OTHER_ACTION");

 receiver = new BroadcastReceiver() {
 @Override
  public void onReceive(Context context, Intent intent) {
   //do something based on the intent's action
 }
 };
  registerReceiver(receiver, filter);
  }

记得在 onDestroy 方法中运行:

 @Override
protected void onDestroy() {
if (receiver != null) {
 unregisterReceiver(receiver);
 receiver = null;
}
super.onDestroy();
}

已更新

在您的清单中添加:

<activity android:name=".MainActivity">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />

        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
            <intent-filter>
        <action android:name="android.nfc.action.TECH_DISCOVERED" />
        <action android:name="android.nfc.action.TAG_DISCOVERED" />
        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
</activity>

我猜你搞错了: 您正在使用 intentFilter1 而不执行操作,因为该操作已添加到 intentFilter0 中,请尝试将操作添加到 intentFilter1 并 运行 它。

意图 android.nfc.action.TAG_DISCOVERED 与所有 NFC 意图一样,是一个 activity 意图,而不是广播意图。根本不可能为它注册一个广播接收器。您可以做的是注册一个 activity 来接收 NFC 意图。这可以通过清单、NFC 前台调度系统或在 Android 4.4+ 上通过 NFC reader 模式 API.

完成

1。清单

根据您标签上的数据,您可能想要注册 NDEF_DISCOVERED 意图(如果标签上有 NDEF 结构化数据)或 TECH_DISCOVERED 意图(如果您的只想听取某些标签技术,而不管标签上的数据)。您通常不想注册 TAG_DISCOVERED 意图过滤器,因为当通过 AndroidManifest.xml.

例如如果您的标签包含 URL http://www.example.com/,您可以使用以下意图过滤器:

<activity android:name=".MainActivity">
    ...
    <intent-filter>
        <action android:name="android.nfc.action.NDEF_DISCOVERED" />
        <category android:name="android.intent.category.DEFAULT" />
        <data android:scheme="http" android:host="www.example.com" />
    </intent-filter>
</activity>

如果您的标签不包含任何特定数据并且可能采用任何标签技术,您可以使用以下意图过滤器:

<activity android:name=".MainActivity">
    ...
    <intent-filter>
        <action android:name="android.nfc.action.TECH_DISCOVERED" />
        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
    <meta-data android:name="android.nfc.action.TECH_DISCOVERED"
               android:resource="@xml/nfc_tech_filter" />
</activity>

要使此 Intent 过滤器起作用,您还需要在应用程序的 res/ 目录中有一个 XML 资源 xml/nfc_tech_filter.xml。如果技术过滤器应该匹配任何标签,该文件将包含:

<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
    <tech-list>
        <tech>android.nfc.tech.NfcA</tech>
    </tech-list>
    <tech-list>
        <tech>android.nfc.tech.NfcB</tech>
    </tech-list>
    <tech-list>
        <tech>android.nfc.tech.NfcF</tech>
    </tech-list>
    <tech-list>
        <tech>android.nfc.tech.NfcV</tech>
    </tech-list>
    <tech-list>
        <tech>android.nfc.tech.NfcBarcode</tech>
    </tech-list>
</resources>

一旦您的 activity 注册接收这些事件,您就可以通过 onCreate() 在您的 activity 中接收这些意图(如果您的 activity 是由NFC 事件)或通过 onNewIntent()(如果您的 activity 在打开时收到后续 NFC 意图):

@Override
public void onCreate(Bundle savedInstanceState) {

    [...]

    Intent startIntent = getIntent();
    if ((startIntent != null) &&
        (NfcAdapter.ACTION_NDEF_DISCOVERED.equals(startIntent.getAction()) ||
        NfcAdapter.ACTION_TECH_DISCOVERED.equals(startIntent.getAction()))) {
        // TODO: process intent
    }
}

@Override
protected void onNewIntent(Intent intent) {
    if (NfcAdapter.ACTION_NDEF_DISCOVERED.equals(intent.getAction()) ||
        NfcAdapter.ACTION_TECH_DISCOVERED.equals(intent.getAction())) {
        // TODO: process intent
    }
}

2。前台调度系统

如果您只对接收 NFC 发现意图感兴趣,而您的 activity 在前台可见,您最好使用 NFC 前台调度系统,而不是通过清单注册接收 NFC 事件。您可以通过在 onResume():

期间注册您的 activity 来做到这一点
@Override
public void onResume() {
    super.onResume();

    PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, new Intent(this, getClass()).addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP), 0);
    NfcAdapter nfcAdapter = NfcAdapter.getDefaultAdapter(this);
    nfcAdapter.enableForegroundDispatch(this, pendingIntent, null, null);
}

您还必须确保在 onPause():

期间注销
@Override
public void onPause() {
    super.onPause();
    NfcAdapter nfcAdapter = NfcAdapter.getDefaultAdapter(this);
    nfcAdapter.disableForegroundDispatch(this);
}

然后您将通过 onNewIntent():

TAG_DISCOVERED 意图接收 NFC 事件
@Override
public void onNewIntent(Intent intent) {
    if (NfcAdapter.ACTION_TAG_DISCOVERED.equals(intent.getAction())) {
        // TODO: process intent
    }
}

3。 Reader模式API

如果您只对检测 NFC 标签感兴趣,并且只有当您的 activity 在前台可见并且您只需要定位 Android 4.4+ 时,最好的方法可能是使用NFC reader 模式 API。您可以通过在 onStart():

期间注册您的 activity 来做到这一点
@Override
public void onStart() {
    super.onStart();

    NfcAdapter nfcAdapter = NfcAdapter.getDefaultAdapter(this);
    nfcAdapter.enableReaderMode(this, new NfcAdapter.ReaderCallback() {
        @Override
        public void onTagDiscovered(Tag tag) {
            // TODO: use NFC tag
        }
    }, NfcAdapter.FLAG_READER_NFC_A | NfcAdapter.FLAG_READER_NFC_B | NfcAdapter.FLAG_READER_NFC_F | NfcAdapter.FLAG_READER_NFC_V | NfcAdapter.FLAG_READER_NFC_BARCODE, null);
}

您还应确保在 onStop():

期间注销
@Override
public void onStop() {
    super.onStop();
    NfcAdapter nfcAdapter = NfcAdapter.getDefaultAdapter(this);
    nfcAdapter.disableReaderMode(this);
}

您通过 onTagDiscovered(Tag tag) 回调方法接收发现的标记句柄。