所有
只使用代码是否有任何方法可以在点击特定NFC时启动应用程序?
到目前为止,我已经看到了一些Andriodmanifest.xml的变化但没有运气。
我在清单中做了以下更改。
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:host="example.com" android:scheme="http" />
</intent-filter>
NFC标签已存储example.com。
提前感谢您的帮助。
问候,
阿米特
答案 0 :(得分:1)
感谢NFC Guy。我想通了路。 这是
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED"/>
<data android:scheme="http"
android:host="www.example.com"
android:path="" />
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>