2

全部,

当点击特定的 NFC 时,仅使用代码有什么方法可以启动应用程序?

我已经看到了一些 Andriodmanifest.xml 更改,但到目前为止还没有看到运气。

以下我在清单中所做的更改。

<intent-filter>  

<action android:name="android.nfc.action.NDEF_DISCOVERED"/>  

<category android:name="android.intent.category.DEFAULT"/> 

<data android:host="example.com" android:scheme="http" />

</intent-filter>

NFC 标签存储了 example.com 的位置。

我在这里先向您的帮助表示感谢。

问候 ,

阿米特

4

1 回答 1

1

谢谢 NFC 家伙。我想出了办法。这里是

           <intent-filter>
            <action android:name="android.nfc.action.NDEF_DISCOVERED"/>
            <data android:scheme="http"
                android:host="www.example.com"
                android:path="" />  
            <category android:name="android.intent.category.DEFAULT"/>
        </intent-filter>
于 2012-10-18T07:26:11.097 回答