Android-Startaktivität mehrmals auf einem NFC-Tag
Meine Android-App verfügt über zwei Aktivitäten, eine für Informationen und eine für den Empfang von NFC.
Wenn ich die App zum ersten Mal starte, kann ich NFC-Tags mehrmals lesen - jedes Mal, wenn ich eine neue Aktivität aufrufe und Informationen zeige.
Wenn die App geschlossen ist, das Telefon jedoch auf das NFC-Tag geschaltet wird, wird die NFC-Tag-Aktivität beim ersten Mal angezeigt, es wird jedoch nie wieder auf andere Tags geantwortet.
Was mache ich falsch?!
Manifestteil und Code für die zweite Aktivität:
<uses-sdk android:minSdkVersion="10" />
<uses-permission android:name="android.permission.NFC" />
<uses-feature android:name="android.hardware.nfc" android:required="true" />
<application
android:icon="@drawable/aaa"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar">
<activity
android:label="@string/app_name"
android:name=".MainActivity">
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".TagDiscoveredActivity"
android:screenOrientation="portrait">
<intent-filter >
<action android:name="android.nfc.action.TECH_DISCOVERED" />
<action android:name="android.nfc.action.TAG_DISCOVERED" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<meta-data
android:name="android.nfc.action.TECH_DISCOVERED"
android:resource="@xml/filter_nfc" />
</activity>
</application>
</manifest>
Der Code
public class TagDiscoveredActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.info);
etc
}
@Override
public void onNewIntent(Intent intent) {
setIntent(intent);
resolveIntent(intent);
}
private void resolveIntent(Intent intent) {
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
//| Intent.FLAG_ACTIVITY_SINGLE_TOP);
boolean handled = false;
// Parse the intent
final String action = intent.getAction();
if (NfcAdapter.ACTION_TECH_DISCOVERED.equals(action) ||
NfcAdapter.ACTION_TAG_DISCOVERED.equals(action)) {
// When a tag is discovered we send it to the service to be save. We
// include a PendingIntent for the service to call back onto. This
// will cause this activity to be restarted with onNewIntent(). At
// that time we read it from the database and view it.
Parcelable nfctag = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG);
if (nfctag != null) {
//read tag and display here
}
}
}
if (!handled) {
Log.e(logTag, "Unknown intent " + intent);
finish();
return;
}
}
Wenn ich es ausführe und mich für das zweite Szenario anmelde - direkt von NFC aus starten, ohne dass die App ausgeführt wird - zeigt das Protokoll, dass es beim ersten Mal funktioniert, aber beim zweiten Mal zeichnet keine der Funktionen etwas auf.
Vielen Dank für alle hilfreichen Vorschläge.