Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am new to Monodroid and was wondering if there is a way to use an IntentFilter attribute to declare this:

<intent-filter>
    <action android:name="android.nfc.action.NDEF_DISCOVERED"/>
    <category android:name="android.intent.category.DEFAULT"/>
    <data android:mimeType="text/plain" />
</intent-filter>

I tried looking for it using Visual Studio's intellisense but nothing shows up. I already included Android.Nfc.

The reason for this is because I'm having trouble getting my app to run properly. It always says "Unfortunately, app_name has stopped". I don't know if it's an AndroidManifest.xml merging problem.

share|improve this question

1 Answer

up vote 2 down vote accepted

You can use IntentFilterAttribute to generate that:

[IntentFilter(new[] { "android.nfc.action.NDEF_DISCOVERED" }, 
              Categories = new[] { "android.intent.category.DEFAULT"}, 
              DataMimeType = "text/plain")]
public class MyActivity : Activity
{
    // ...
}
share|improve this answer
Cool, I didn't know you could do that. Will try this now. :) – Ron Jul 9 '12 at 15:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.