如何使用NFC启动活动,然后允许在同一活动上扫描不同的标签?

时间:2015-04-14 09:28:09

标签: android android-intent nfc android-applicationrecord

我有一个基本的Android应用程序,需要实现NFC滑动才能启动特定的活动。我通过编写 Android应用程序记录来实现这一目标。然后我需要进一步滑动以使用相同的Activity而不是启动新的。

Android应用程序记录按预期启动活动。然后我启动创建一个Pending Intent并在OnResume中设置前台调度

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_plant);

    // initialize NFC
    nfcAdapter = NfcAdapter.getDefaultAdapter(this);
    nfcPendingIntent = PendingIntent.getActivity(this, 0, new Intent(this, this.getClass()).addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP), 0);
}

@Override
protected void onResume() {
    Log.d(TAG, "onResume");

    super.onResume();

    enableForegroundMode();

    doTagOperations(getIntent());
}

public void enableForegroundMode() {
    Log.d(TAG, "enableForegroundMode");

    IntentFilter tagDetected = new IntentFilter(NfcAdapter.ACTION_TAG_DISCOVERED); // filter for all
    IntentFilter[] writeTagFilters = new IntentFilter[] {tagDetected};
    nfcAdapter.enableForegroundDispatch(this, nfcPendingIntent, writeTagFilters, null);
}

然后我有一个标记相关活动的方法。这看起来如下:

private void doTagOperations(Intent intent) {

    Log.i(TAG, intent.getAction());
    if (NfcAdapter.ACTION_TAG_DISCOVERED.equals(intent.getAction())) {
        TextView textView = (TextView) findViewById(R.id.title);

        textView.setText("Hello NFC!");

        Parcelable[] messages = intent.getParcelableArrayExtra(NfcAdapter.EXTRA_NDEF_MESSAGES);
        if (messages != null) {

            Log.d(TAG, "Found " + messages.length + " NDEF messages"); // is almost always just one

            vibrate(); // signal found messages :-)

            // parse to records
            for (int i = 0; i < messages.length; i++) {
                try {
                    List<Record> records = new Message((NdefMessage)messages[i]);

                    Log.d(TAG, "Found " + records.size() + " records in message " + i);

                    for(int k = 0; k < records.size(); k++) {
                        Log.d(TAG, " Record #" + k + " is of class " + records.get(k).getClass().getSimpleName());

                        Record record = records.get(k);
                        if(records.get(k).getClass().getSimpleName().equals("TextRecord")) {
                            String plant = new String(records.get(k).getNdefRecord().getPayload());
                            Log.i(TAG, plant);
                            textView.setText(plant);
                        }
                        if(record instanceof AndroidApplicationRecord) {
                            AndroidApplicationRecord aar = (AndroidApplicationRecord)record;
                            Log.d(TAG, "Package is " + aar.getDomain() + " " + aar.getType());
                        }

                    }
                } catch (Exception e) {
                    Log.e(TAG, "Problem parsing message", e);
                }

            }
        }
    } else {
        // ignore
    }
}

我的问题是系统行为奇怪。您可以使用标记启动活动,但第二次滑动将启动新活动。然后进一步滑动将使用现有的Activity,但Intent将始终显示为相同。我尝试从标签中读取文本记录,这应该根据我刷卡的标签而改变 - 但它并没有。好像我抓住Intent的方法总是拿起相同的方法而不管滑动的标签。

1 个答案:

答案 0 :(得分:0)

从NFC前台调度中获取新的意图

onResume()中,您使用getIntent()检索意图。除非您使用setIntent()覆盖此意图,否则getIntent()将返回最初开始您的活动的意图。

NFC前台调度系统的新意图通过onNewIntent()方法传递给您的活动。因此,你可以这样做:

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

第二个NFC事件启动活动的新实例

我不确定那个,但我可能想尝试为您的活动设置lauchMode。见this answer to the question NFC Tag Reading。您也可以尝试使用前台调度系统(使用createPendingResult()onActivityResult())的替代方法在这种情况下工作。请参阅my other answer here