0

我在 Stack Overflow 上就标签编写进行了各种讨论。但是没有找到任何实际的代码示例,可以帮助我构建使用 Android NFC 功能在标签上写入的功能。

我正在尝试在 Android Jelly Bean 上构建标签编写功能。但无法在标签上写字。

任何人都可以帮我提供一些示例代码或示例吗?

谢谢你的分享。

4

2 回答 2

0

这是我使用我在此处发布的 Android 的 Nfc 实用程序类编写标签的方法:

    @Override
    protected void onNewIntent(Intent intent) {
        // Tag writing mode
        if (writeMode && nfcUtil.checkTagIntentMatch(intent)) {
            Tag detectedTag = nfcUtil.getTag(intent);
            try {
                Util.playSound(this);
            } catch (Exception e) { }
            nfcUtil.writeTag(movie.asNdef(), detectedTag);
        }
    }
于 2013-04-01T23:51:17.580 回答
0

请参阅我创建的 Android 项目的 NDEF 工具。它包含用于在 Android 上读取、写入和发送的代码。另请参阅有助于学习 NDEF 格式的NFC Eclipse 插件。

于 2013-03-30T22:15:25.487 回答