0

I have created one simple application to send NDeF Record and display it in other device. Now i have deleted my P2P reader application from my device and download other TAG rader application. Now if i do tap that Tag Reader Application display my complete data which i don't want to allow.

P.S I have created the ndef record like

NdefRecord newNdefRecord = new NdefRecord(NdefRecord.TNF_EXTERNAL_TYPE,
            "com.yash.test:yash".getBytes(), new byte[0], data);

Is it possible?

4

1 回答 1

0

不太清楚你想做什么,但你一般不能修改系统如何处理 NFC 标签。如果有已注册处理特定标签或 NDEF 格式的应用程序,用户将可以选择其中一个。你所能做的就是使用前台调度来确保你的应用程序在前台处理标签。如果你想隐藏你的数据,你可以尝试加密它,这样其他应用程序就无法恢复它。密钥需要嵌入到您的应用程序中才能正常工作,因此它不是非常安全。

于 2012-12-26T06:28:27.147 回答