Android应用程序启用NFC只为一个活动Android应用程序启用NFC只为一个活动(Andro

2019-05-12 12:21发布

是否有可能使NFC只有一个在android系统的启用NFC功能的应用程序的活动?

我读过这一点, 仅从particuar活动阅读NFC标签

但这些设备仍在扫描对应用程序的所有活动标签。

编辑:

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

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

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

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".activities.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".activities.ReceiveActivity"
            android:label="@string/title_activity_receive" >
            <intent-filter>
                <action android:name="android.nfc.action.NDEF_DISCOVERED" />
                <category android:name="android.intent.category.DEFAULT" />
                <data android:mimeType="application/json+com.example.nfccheckout" />
            </intent-filter>
        </activity>
        <activity
            android:name=".activities.CreatePayloadActivity"
            android:label="@string/title_activity_create_payload" >
        </activity>
        <activity
            android:name=".activities.ConfirmationActivity"
            android:label="@string/title_activity_confirmation" >
        </activity>
    </application>

</manifest>

Answer 1:

如果你想魔鬼NFC发现事件(的处理NDEF_DISCOVEREDTECH_DISCOVEREDTAG_DISCOVERED ),而某些活动是在前台,你会报名参加该活动的 前景调度系统 。 那么这种活动可以忽略这些事件(它会接收其onNewIntent()方法。

这将防止NFC发现事件被传递到具有在清单中注册的NFC disovery意图过滤器的任何其他活动(所以那些在你的应用程序和任何其他已安装的应用程序)。

但是,这种方法不会禁用该设备的NFC调制解调器。 因此,NFC芯片将仍然轮询标签,但他们只是没有报任何应用程序。

所以,你要禁用NFC为会做这样的事情的所有活动:

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

public void onPause() {
    super.onPause();
    NfcAdapter nfcAdapter = NfcAdapter.getDefaultAdapter(this);
    nfcAdapter.disableForegroundDispatch(this);
}

public void onNewIntent(Intent intent) {
    if (NfcAdapter.ACTION_TAG_DISCOVERED.equals(intent.getAction())) {
        // drop NFC events
    }
}


Answer 2:

ReceiveActivity设置为被触发时遇到指定的MIME类型的NDEF标签的任何时间。 如果你不希望这种行为,你需要做的事情,比如移除该<intent-filter>



文章来源: Android app enable NFC only for one Activity