gpt4 book ai didi

java - 当应用程序关闭时,Android NFC 总是调用 onCreate

转载 作者:行者123 更新时间:2023-12-02 01:16:07 25 4
gpt4 key购买 nike

enter image description here我制作了检测 nfc 标签的应用程序。一切正常,当我的应用程序关闭并且我用手机扫描 nfc 标签时,它向我显示一个具有 onCreate() 方法的 Activity ,当我再次扫描它的第二次工作时,我不知道我的生命周期是否错误应用程序或我在代码中遗漏了某些内容?当我打开应用程序时,扫描正在工作:第一张照片当应用程序关闭时第二张照片:来自第二张照片,但在第二次扫描中它可以工作enter image description here这是我的代码

public class NfcActivity extends AppCompatActivity {

private static final String TAG = "NfcActivity";

private NfcAdapter mNfcAdapter;
private TextView mTextView;
PendingIntent pendingIntent;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_nfc);
mTextView = findViewById(R.id.tv_nfc_detail);
mNfcAdapter = NfcAdapter.getDefaultAdapter(getApplicationContext());
if (mNfcAdapter == null) {
Toast.makeText(this, "Cet appareil ne supporte pas nfc", Toast.LENGTH_SHORT).show();
finish();
return;
}
if (!mNfcAdapter.isEnabled()) {
startActivity(new Intent("android.settings.NFC_SETTINGS"));
Toast.makeText(this, "Activer nfc", Toast.LENGTH_SHORT).show();
}

pendingIntent = PendingIntent.getActivity(this, 0, new Intent(this,
getClass()).addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP), 0);
}

@Override
protected void onPause() {
super.onPause();
mNfcAdapter.disableForegroundDispatch(this);
}

@Override
protected void onResume() {
super.onResume();
pendingIntent = PendingIntent.getActivity(this, 0, new Intent(this,
getClass()).addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP), 0);
IntentFilter[] intentFilters = new IntentFilter[]{};
mNfcAdapter.enableForegroundDispatch(this, pendingIntent, intentFilters, null);

}

@Override
protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);
// if ((intent.getFlags() & Intent.FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY) == 0) {
if (NfcAdapter.ACTION_NDEF_DISCOVERED.equals(intent.getAction())
|| NfcAdapter.ACTION_TECH_DISCOVERED.equals(intent.getAction()) || NfcAdapter.ACTION_TAG_DISCOVERED.equals(intent.getAction())) {
Tag iTag = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG);
mTextView.setText(TagReader.readTag(iTag, intent));
}
// }
}
}
<activity android:name=".Activities.NfcActivity" android:launchMode="singleTask">

<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.NDEF_DISCOVERED" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="android.nfc.action.TECH_DISCOVERED" />
</intent-filter>
</activity>

最佳答案

编辑:查看相关的完整解决方案:

<小时/>

您仅在第二轮处理 Intent 。

根据当前的 onNewIntent() 方法添加一个新方法,如下所示:

private void onNewNfcTag(Intent intent) {
if (NfcAdapter.ACTION_NDEF_DISCOVERED.equals(intent.getAction())
|| NfcAdapter.ACTION_TECH_DISCOVERED.equals(intent.getAction())
|| NfcAdapter.ACTION_TAG_DISCOVERED.equals(intent.getAction())) {
Tag iTag = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG);
mTextView.setText(TagReader.readTag(iTag, intent));
}
}

更改您的 onNewIntent() 以调用此新方法:

@Override
protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);
onNewNfcTag(intent);
}

使用 getIntent() 的 Intent 从 onCreate() 调用相同的方法:

@Override
protected void onCreate(Bundle savedInstanceState) {
// .... your code already here
onNewNfcTag(getIntent());
}

关于java - 当应用程序关闭时,Android NFC 总是调用 onCreate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57658942/

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