我有一个应用程序从NFC标签读取数据并打印出来。在https://developer.android.com/guide/topics/connectivity/nfc/nfc.html#filtering-intents之后(参见ACTION_TECH_DISCOVERED部分),当我从android本身扫描NFC标签时,我可以启动应用程序。但是,这不会触发OnNewIntent方法,然后解析并打印标记中包含的数据。只有在应用程序已打开时重新扫描标记时,它才有效。
在mainActivity中:
@Override
protected void onNewIntent(Intent intent) {
if (NfcAdapter.ACTION_TECH_DISCOVERED.equals(intent.getAction())) {
//stuff
}
}
在清单中:
<activity android:name=".MainActivity"
<intent-filter>
<action android:name="android.nfc.action.TECH_DISCOVERED" />
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<meta-data
android:name="android.nfc.action.TECH_DISCOVERED"
android:resource="@xml/filter_nfc"
/>
</activity>
问题是:是否可以直接触发OnNewIntent方法,还是有其他方法?
谢谢
答案 0 :(得分:0)
试试这个:
protected void onCreate(Bundle savedInstanceState) {
//Your stuff
Intent intent = getIntent();
handleIntents(intent);
}
@Override
protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);
setIntent(intent);
handleIntents(intent);
}
private void handleIntents(Intent intent) {
if (NfcAdapter.ACTION_TECH_DISCOVERED.equals(intent.getAction())) {
//stuff
}
}