当我用手机扫描NFC标签时,不会调用onNewIntent()方法。只是打开一个栏,我可以在其中选择应处理扫描的应用程序,但是即使在那儿选择我的应用程序,onNewIntent()方法也不会执行。
我已经尝试将NFC标签处理放入称为performTagOperations()的额外方法中,
MainActivity:
public class MainActivity extends AppCompatActivity {
TextView mtv1;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mtv1 = findViewById(R.id.tv1);
mtv1.setText("Hallo");
performTagOperations(getIntent());
}
@Override
protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);
setIntent(intent);
Toast.makeText(this,"Intent",Toast.LENGTH_LONG).show();
mtv1.setText("Intent");
performTagOperations(intent);
}
private void performTagOperations(Intent intent){
if (NfcAdapter.ACTION_NDEF_DISCOVERED.equals(intent.getAction())) {
Tag tag = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG);
Log.d("NFC",tag.toString());
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];
}
// Process the messages array.
for (NdefMessage n:
messages) {
Log.d("NFC", n.toString());
}
}
}
}
}
AndroidManifest:
<uses-permission android:name="android.permission.NFC" />
<uses-feature android:name="android.hardware.nfc"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme"
tools:ignore="GoogleAppIndexingWarning">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<action android:name="android.nfc.action.TECH_DISCOVERED" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<meta-data
android:name="android.nfc.action.TECH_DISCOVERED"
android:resource="@xml/nfc_tech_filter" />
</activity>
</application>
nfc_tech_filter:
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<tech-list>
<tech>android.nfc.tech.Ndef</tech>
<!-- class name -->
</tech-list>
</resources>
在扫描Tag时,它应该执行onNewIntent()方法,但不会执行。
答案 0 :(得分:0)
您注册以在清单中接收NFC意图android.nfc.action.TECH_DISCOVERED
。但是,您希望在performTagOperations()
中收到android.nfc.action.NDEF_DISCOVERED
(NfcAdapter.ACTION_NDEF_DISCOVERED
)。因此,该IF语句中的代码将永远不会执行。您将不得不将其更改为
if (NfcAdapter.ACTION_TECH_DISCOVERED.equals(intent.getAction())) {
}
甚至更好的是,为适合您的标签的NDEF数据类型注册一个意图过滤器。
还请注意,onNewIntent()
仅在您的活动已经运行时才被调用。如果您的活动是由NFC意图创建的,则可以通过以下方式获取意图:改为onCreate()
。