gpt4 book ai didi

android - 假 NFC(近场通信)启动的可能性

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:07:12 25 4
gpt4 key购买 nike

我正在研究用于从 NFC 标签读取数据的近场通信。我没有支持 NFC 的 Android 手机和 NFC 标签来测试我创建的应用程序。

我想知道是否可以通过 intent 过滤器启动我的应用(假设从我的设备检测到 NFC 标签)

我的 list fragment :

 <activity
android:name=".ServerActivity"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED" />

<category android:name="android.intent.category.DEFAULT" />

<data
android:host="abc.com"
android:pathPrefix="/aaap"
android:scheme="http" />
</intent-filter>
</activity>

我的 Activity fragment :

@Override
protected void onNewIntent(Intent intent) {
if (NfcAdapter.ACTION_TAG_DISCOVERED.equals(intent.getAction())) {
Toast.makeText(getApplicationContext(), "ACTION_TAG_DISCOVERED",
Toast.LENGTH_LONG);
Tag tag = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG);
}
}

最佳答案

我可能完全忽略了这里的要点,但根据我的理解,您基本上想要触发一个 Intent ,该 Intent 将被您在 list 中声明的​​接收者选中,对吧?您是否尝试过使用 sendBroadcast(...) 方法设置一个非常简单的测试应用程序来执行此操作?

Intent exampleIntent = new Intent("android.nfc.action.NDEF_DISCOVERED");
sendBroadcast(exampleIntent)

您可以根据需要向 Intent 添加任何额外数据。

关于android - 假 NFC(近场通信)启动的可能性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10346894/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com