2

我正在编写一些 NFC-Tag 的 URL 以对主机名进行意图过滤 - 如果已安装,则启动应用程序,如果未安装应用程序,则提供指向 google-play 的链接。不幸的是,只有浏览器出现:

<intent-filter>
 <action android:name="android.intent.action.VIEW"></action>
 <category android:name="android.intent.category.DEFAULT"></category>
 <category android:name="android.intent.category.BROWSABLE"></category>
 <data android:host="example.com" android:scheme="http" />
</intent-filter>
4

1 回答 1

4

行动需要不同:

 <intent-filter>
    <action android:name="android.nfc.action.NDEF_DISCOVERED"></action>
    <category android:name="android.intent.category.DEFAULT"></category>
    <data android:host="example.com" android:scheme="http" />
 </intent-filter>

仍然不需要许可

于 2012-09-04T13:39:26.533 回答