我真的阅读了10或20个关于此的主题,不幸的是我没有让它发挥作用。我的接收器可以捕获广播,但前提是我从我的应用程序通过sendBroadcast(intent)
发送广播。我想让它从NFC适配器捕获广播。有人将NFC标签放在我的设备附近,然后我的应用程序应该在浏览菜单中启动或显示,但这不会发生。即使我的应用程序启动,并且我将NFC标签放在设备附近,它也无法捕获它,并且在浏览菜单中我看到其他应用程序,这可以。
我的接收者:
public class SomeBroadcastReceiver extends BroadcastReceiver {
private final String TAG = "SomeBroadcastReceiver";
@Override
public void onReceive(Context context, Intent intent) {
Log.d(TAG, "Got intent: " + intent);
}
}
我的清单文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.nfc">
<uses-permission android:name="android.permission.NFC" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:icon="@drawable/icon"
android:label="@string/app_name">
<receiver android:enabled="true" android:name=".broadcast.SomeBroadcastReceiver">
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED"/>
<category android:name="android.intent.category.DEFAULT" />
<action android:name="android.nfc.action.TECH_DISCOVERED"/>
<meta-data android:name="android.nfc.action.TECH_DISCOVERED" android:resource="@xml/technologies"/>
<action android:name="android.nfc.action.TAG_DISCOVERED"/>
</intent-filter>
</receiver>
<activity android:name=".simulator.FakeTagsActivity"
android:theme="@android:style/Theme.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="TagViewer"
android:theme="@android:style/Theme.NoTitleBar">
<intent-filter>
<action android:name="android.nfc.action.TAG_DISCOVERED" />
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="10" />
<uses-feature android:name="android.hardware.nfc" android:required="true" />
在FakeActivity中,我有这样一句话:
Intent exampleIntent = new Intent("android.nfc.action.NDEF_DISCOVERED");
sendBroadcast(exampleIntent);
当app修复它们时,我的接收器会捕获意图,所以我认为接收器很好,但也许我会错过清单中的某些内容?是否有获得全球广播的特殊许可?或者我应该开始服务还是某事?
答案 0 :(得分:6)
您无法使用BroadcastReceiver捕获这些意图,因为只有活动才能接收NFC意图。您可以在NFC guide。
中找到有关它的更多信息答案 1 :(得分:0)
我使用了描述in this answer的技术 - 它提供与广播接收器相同的效果。
答案 2 :(得分:0)
根据此处(https://stackoverflow.com/a/5320694/3736955),您无法通过BroadcastReceiver捕获NFC意图。处理它的唯一方法是通过活动中的ForegroundDispatch和onNewIntent()函数。当点击NFC标签时,它会查找处理他的前景活动。