Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的应用程序能够写入 NFC 标签。
ndef.writeNdefMessage(message);
我应该在写入之前检查支持的 NFC 标签技术,还是 Android 会自行处理这个问题并引发错误?
Android 将为您处理。所以通常你不需要检查它。
您可能想打电话ndef.isWritable()来检查是否可以编写并能够向用户提供更好的反馈。
ndef.isWritable()