本文介绍了申报NFC定制意向mime类型的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否有可能有一个NDEF_DISCOVERED?
自定义mime类型 <意向滤光器>
<作用机器人:名字=android.nfc.action.NDEF_DISCOVERED/>
<类机器人:名字=android.intent.category.DEFAULT/>
<数据机器人:mime类型=text / plain的/>
&所述; /意图滤光器>
我想有一个自定义的mime类型,例如:
<数据机器人:mime类型=customType/>
解决方案
当然。在,我使用:
<意向滤光器>
<作用机器人:名字=android.nfc.action.NDEF_DISCOVERED/>
<类机器人:名字=android.intent.category.DEFAULT/>
<数据机器人:mime类型=应用/ vnd.commonsware.sample.webbeam/>
&所述; /意图滤光器>
Is it possible to have a custom mimeType for an NDEF_DISCOVERED?
<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'd like to have a custom mimeType, for example
<data android:mimeType="customType" />
解决方案
Sure. In this sample project, I use:
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="application/vnd.commonsware.sample.webbeam"/>
</intent-filter>
这篇关于申报NFC定制意向mime类型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!