1

我可以从手机中的网络浏览器发送意图广播,并且可以由 Android 中感兴趣的广播接收器(本机应用程序)接收吗?

4

1 回答 1

4

在 HTML 中使用它:

<a href="intent://my_host#Intent;scheme=my_scheme;action=my_action;end">Link to my stuff</a>

然后将这些放在清单中:

    <intent-filter>
        <action android:name="android.intent.action.VIEW"/>
        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />
        <data android:scheme="my_scheme" android:host="my_host" />
    </intent-filter>
于 2013-03-17T08:39:57.060 回答