gpt4 book ai didi

android - 一次触摸(无需移动手机)从标签读取 NDEF 消息两次

转载 作者:行者123 更新时间:2023-11-29 23:27:27 24 4
gpt4 key购买 nike

通过从 NFC 标签读取 NDEF 消息,我成功地获得了一切。读取后,我移动手机,它可以再次读取标签。

我正在使用 onNewIntent 和 foregroundDispatch 来处理消息。

问题是:我想在不移动手机的情况下(不第二次接触标签)读取同一个 NFC 标签两次(出于安全原因)。因此,对于一次触摸,我想阅读两次。

我试图查看生命周期,但似乎如果您不移动手机,它就不会再次发出新的 Intent 。

private NfcAdapter nfc = null;
private boolean inReadMode = false;
private boolean isNFC_support = false;
private PendingIntent mPendingIntent;

@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// ignore the unrelevent part of layout
isNFC_support = true;
nfc = NfcAdapter.getDefaultAdapter(this);
if(nfc == null) {
Toast.makeText(this, "Not support NFC device.", Toast.LENGTH_LONG).show();
isNFC_support = false;
}
if(!nfc.isEnabled()) {
Toast.makeText(this, "Please go the setting and enable NFC first.", Toast.LENGTH_LONG).show();
isNFC_support = false;
}
if (isNFC_support == true) {
mPendingIntent = PendingIntent.getActivity(this, 0, new Intent(this, getClass()).addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP), 0);
}
}

@Override
protected void onNewIntent(Intent intent) {
Log.i("NFC", "---- onNewIntent called ---- ");
if (this.inReadMode && NfcAdapter.ACTION_NDEF_DISCOVERED.equals(intent.getAction())) {
Log.i("NFC", "---- onNewIntent called ---- AND read nfc success!");
try {
readFromTag(intent);
} catch (Exception e) {
Log.e("NFC", "nfc cmac validate: ", e);
}
}
}

@Override
public void onResume() {
super.onResume();
Log.i("NFC", "---- onResume called ---- ");
nfc.enableForegroundDispatch(this, mPendingIntent, null, null);
}


@Override
public void onPause() {
Log.i("NFC", "---- onPause called ---- ");
if (nfc != null) {
nfc.disableForegroundDispatch(this);
}
if (isFinishing()) {
cleanupReadingFromTag();
}
super.onPause();
}

private void readFromTag(Intent intent) throws RuntimeException, NoSuchAlgorithmException, IOException {
Parcelable[] msgs = intent.getParcelableArrayExtra(NfcAdapter.EXTRA_NDEF_MESSAGES);
// code I handle the message as I get. Not important for read twice I think?
}

那么我怎样才能再次读取标签呢?

最佳答案

NFC Intent 仅在检测到 NFC 标签时发送。如果标签包含 NDEF 消息,该消息会自动处理并在 Intent Extra (NfcAdapter.EXTRA_NDEF_MESSAGES) 中与您的应用共享。

如果您想在稍后阶段再次读取标签(并设法保持 NFC 标签持续连接),您将需要直接与标签通信。您可以通过标记句柄对象来完成此操作。此对象(类 Tag)也会在检测到标签时传递给您的应用(作为 NFC Intent 的附加 Intent ):

Tag tag = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG);

标签连接后,您可以随时使用该对象启动与标签的通信。例如。要重新阅读标签上的当前 NDEF 消息,您可以使用:

Ndef ndef = Ndef.get(tag);
if (ndef != null) {
try {
ndef.connect();
NdefMessage msg = ndef.getNdefMessage();
// do something with the NDEF message
} catch (IOException e) {
} finally {
try {
ndef.close();
} catch (Exception e) {}
}
}

关于android - 一次触摸(无需移动手机)从标签读取 NDEF 消息两次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53328885/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com