gpt4 book ai didi

android - 一种在 MonoDroid 中声明 NDEF_DISCOVERED IntentFilter 属性的方法?

转载 作者:行者123 更新时间:2023-11-29 22:03:28 26 4
gpt4 key购买 nike

我是 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合并问题。

最佳答案

您可以使用 IntentFilterAttribute生成:

[IntentFilter(new[] { "android.nfc.action.NDEF_DISCOVERED" }, 
Categories = new[] { "android.intent.category.DEFAULT"},
DataMimeType = "text/plain")]
public class MyActivity : Activity
{
// ...
}

关于android - 一种在 MonoDroid 中声明 NDEF_DISCOVERED IntentFilter 属性的方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11393979/

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