是否可以为Android中的一项活动启用NFC以启用NFC应用程序?
我读过这个, Reading NFC tags only from a particuar activity
但是设备仍在扫描应用程序的所有活动上的标签。
编辑:
<?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>
答案 0 :(得分:4)
如果您希望在某个活动位于前台时对NFC发现事件(NDEF_DISCOVERED
,TECH_DISCOVERED
,TAG_DISCOVERED
)进行广告处理,则会注册该活动< / strong>表示foreground dispatch system。然后,该活动可以忽略这些事件(它将在onNewIntent()
方法中收到。
这样可以防止NFC发现事件传递到任何其他活动(那些应用程序和任何其他已安装应用程序中的活动),这些活动在清单中注册了NFC disovery intent过滤器。
但是,此方法不禁用设备的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
}
}
答案 1 :(得分:1)
您的ReceiveActivity
设置为在遇到具有指定MIME类型的NDEF标记时触发。如果您不想要此行为,则需要执行某些操作,例如删除此<intent-filter>
。