我正在创建一个简单的应用程序来编写和读取NFC标签,但我想知道如果应用程序没有安装在设备中而不是去app store查找是否可以使用URI记录使用AAR的应用程序?
这是我的NdefMessage代码:
private NdefMessage getTagAsNdef(String uri) {
NdefRecord rtdUriRecord = NdefRecord.createUri(uri);
return new NdefMessage(new NdefRecord[] { rtdUriRecord,
NdefRecord.createApplicationRecord("com.example.nfcapplication")
});
}
答案 0 :(得分:0)
如果您在NFC标签上写入URI,没有专用应用程序的手机将在浏览器中打开该URI。这是你想要的结果吗?