1

我正在创建一个应用程序来捕捉一个 android 光束并启动我的应用程序而不是指定的应用程序。例如:发送网页,但我的应用程序改为启动。

我尝试使用 NDEF 意图过滤器设置清单,但它似乎没有捕捉到光束并启动我的活动。

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

任何帮助表示赞赏。谢谢!

4

1 回答 1

3

在动作下方放置:

   <category android:name="android.intent.category.DEFAULT" />
    <data android:scheme="http"
        android:host="example.com"
        android:pathPrefix="" />

欲了解更多信息:http: //developer.android.com/guide/topics/connectivity/nfc/nfc.html#well-known-uri

于 2013-07-22T23:40:20.940 回答