我是 Monodroid 的新手,想知道是否有办法使用IntentFilter
属性来声明:
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="text/plain" />
</intent-filter>
我尝试使用 Visual Studio 的智能感知来寻找它,但没有任何显示。我已经包含了 Android.Nfc。
原因是我无法让我的应用程序正常运行。它总是说“不幸的是,app_name 已停止”。不知道是不是AndroidManifest.xml
合并的问题。