如何从检测到的NFC标签(NDEF消息)中读取。 Android NFC

时间:2012-07-28 03:50:27

标签: android android-intent nfc ndef

类似的问题 - How to read detected NFC tag (NDEF content) details in android?

我希望我的Android应用程序能够读取和解析检测到的NDEF消息。

我已经编辑了AndroidManifest.xml来检测nfc标签,我添加了它看起来像这样的意图过滤器

            <intent-filter>
            <action android:name="android.nfc.action.TAG_DISCOVERED"/>
            <category android:name="android.intent.category.DEFAULT"/>
    </intent-filter>

我相信这很好,因为当我使用SDK附带的NFCDemo示例应用程序来创建MockNDEFtags时,我可以选择处理这些生成的应用程序的应用程序列表。 然后我点击我的应用程序,它打开没有问题,我只需要一种方法来读取在NDEF消息中传递给它的数据。代码:

 Tag myTag = (Tag) nfcintent.getParcelableExtra(NfcAdapter.EXTRA_TAG);

 // get NDEF tag details
 Ndef ndefTag = Ndef.get(myTag);
 ...
 NdefMessage ndefMesg = ndefTag.getCachedNdefMessage();
在一个类似的问题中提出了

,在整个网络中我发现了许多类似的答案。 我的问题在于代码行

"Tag myTag = (Tag) nfcintent.getParcelableExtra(NfcAdapter.EXTRA_TAG);"

我收到错误&#34; nfcintent无法解决&#34; 我意识到代码的作者可能会将nfcintent作为特定于我的应用程序的意图的占位符,但我不确定我应该放在哪里。

启动我的应用的主要活动看起来像这样

public class TabsActivity extends TabActivity {

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    TabHost tabHost = getTabHost();

    // Tab for Graph
    TabSpec graphspec = tabHost.newTabSpec("Graph");
    // setting Title and Icon for the Tab
    graphspec.setIndicator("Graph");
    Intent graphIntent = new Intent(this, GraphActivity.class);
    graphspec.setContent(graphIntent);

    // Tab for Intro
    TabSpec introspec = tabHost.newTabSpec("Intro");
    introspec.setIndicator("Intro");
    Intent introIntent = new Intent(this, IntroActivity.class);
    introspec.setContent(introIntent);


    // Adding all TabSpec to TabHost
    tabHost.addTab(introspec); // Adding intro tab
    tabHost.addTab(graphspec); // Adding graph tab

}

}

我认为,当这启动应用程序时,必须处理NFC标签。如果我可以从标签访问NDEFMessage,我已经能够使用Android示例应用程序中的NdefMessageParser解析它。我想解析NDEFmessage中的信息,并最终通过应用程序中的每个选项卡访问该信息。

2 个答案:

答案 0 :(得分:2)

尝试使用此代码段从Tag中提取消息:

Parcelable[] rawMsgs = intent
            .getParcelableArrayExtra(NfcAdapter.EXTRA_NDEF_MESSAGES);
    NdefMessage msg = (NdefMessage) rawMsgs[0];
    extractMessage(msg);

private void extractMessage(NdefMessage msg) {
        byte[] array = null;
        array = msg.getRecords()[0].getPayload();
}

另请查看此示例中的NFC Reader/Writer

答案 1 :(得分:2)

要获得通过NFC标签启动活动的意图“nfcintent”,请使用

Intent nfcintent = getIntent();