如何在Android中向NFC智能海报标签写入数据
我被要求在智能海报标签中写入以下数据。
1) 折扣优惠网址 2) 计算价值(例如前 200 个条目的报价)
如何以编程方式在智能海报中写入这些信息?
它可以写成键/值对吗?
任何指向示例代码的指针可以对我有很大帮助吗?
提前致谢。
I am asked to write the following data in smart poster tag.
1) URL of the discount offer
2) Count value (like offer for first 200 entries)
How to write these information in smart poster programmatically?
Is it something that can be written as key/value pairs?
Any pointers to sample code can help me a lot?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为要求1)和2)是两个不同的层次。
要求。 1)是在Android/NFC编程级别,使用TNF_WELL_KNOWN和RTD-SMART_POSTER(因为这是一个URL,所以使用RTD_URI就可以了)。
这是一些代码:
根据要求。 2 我们有一个棘手的部分。
使用 Android/NFC API,您可以识别您编写的每个标签,但您无法在 NF 标签内添加某种计数器程序逻辑,此功能必须在外部应用程序上执行(在 Android、PC、Mac、自定义应用程序上命名)设备等)。
奇特的方法是:为您的业务销售和报价构建定制 NFC 终端。
简单的方法:在收银员计算机上构建一个简单的应用程序来扫描条形码(下载的图像)并编写该事件的计数器。
希望有帮助。
I Think that that requirements 1) and 2), are two different levels.
Req. 1) is on the Android/NFC programming level, using TNF_WELL_KNOWN and RTD-SMART_POSTER(since this is a URL, usingRTD_URI works jus right).
here is some code:
On req. 2 we have a tricky part.
with Android/NFC API you can Identify each tag that you write but you can not add a sort of counter program logic within the NF Tag, this function have to be performed on an external application (name it on Android, PC, Mac, custom device, etc.).
Fancy way to do it: Build custom NFC terminal for sales and offers of your business.
Simpe way to do it: Build a simple app on the cashiers computers to scan a barcode (an image downloaded) and write a counter wi that event.
hope it helps.