Android的前台调度(ForegroundDispatch)用于NFC,可以在应用程序的活动中处理NFC意图。以下是一个包含示例代码的解决方法:
public class MainActivity extends AppCompatActivity {
private NfcAdapter nfcAdapter;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
nfcAdapter = NfcAdapter.getDefaultAdapter(this);
if (nfcAdapter == null) {
// 设备不支持NFC
Toast.makeText(this, "设备不支持NFC", Toast.LENGTH_SHORT).show();
finish();
return;
}
if (!nfcAdapter.isEnabled()) {
// NFC未启用
Toast.makeText(this, "请启用NFC", Toast.LENGTH_SHORT).show();
finish();
return;
}
// 创建PendingIntent,用于处理NFC意图
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, new Intent(this, getClass()).addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP), 0);
IntentFilter[] intentFilters = new IntentFilter[]{};
// 设置前台调度(ForegroundDispatch)
nfcAdapter.enableForegroundDispatch(this, pendingIntent, intentFilters, null);
}
@Override
protected void onResume() {
super.onResume();
// 在活动处于前台时启用前台调度(ForegroundDispatch)
if (nfcAdapter != null && nfcAdapter.isEnabled()) {
nfcAdapter.enableForegroundDispatch(this, pendingIntent, intentFilters, null);
}
}
@Override
protected void onPause() {
super.onPause();
// 在活动暂停时禁用前台调度(ForegroundDispatch)
if (nfcAdapter != null && nfcAdapter.isEnabled()) {
nfcAdapter.disableForegroundDispatch(this);
}
}
@Override
protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);
// 处理NFC意图
if (NfcAdapter.ACTION_NDEF_DISCOVERED.equals(intent.getAction())) {
Parcelable[] rawMessages = intent.getParcelableArrayExtra(NfcAdapter.EXTRA_NDEF_MESSAGES);
if (rawMessages != null) {
NdefMessage[] messages = new NdefMessage[rawMessages.length];
for (int i = 0; i < rawMessages.length; i++) {
messages[i] = (NdefMessage) rawMessages[i];
}
// 处理NDEF消息
handleNdefMessages(messages);
}
}
}
private void handleNdefMessages(NdefMessage[] messages) {
// 处理NDEF消息的逻辑
}
}
以上代码示例中,我们首先在onCreate()
方法中检查设备是否支持NFC,并判断NFC是否启用。然后创建一个PendingIntent,用于处理NFC意图。接下来,在onResume()
方法中启用前台调度(ForegroundDispatch),在onPause()
方法中禁用前台调度。最后,在onNewIntent()
方法中处理NFC意图,并调用handleNdefMessages()
方法处理NDEF消息。
请注意,在AndroidManifest.xml
文件中添加的NFC过滤器可以根据您的需求进行修改,以匹配特定的NFC标签或数据类型。