0

嗨,我必须在浏览器和 Android 应用程序之间建立连接。我参考了链接 [http://stackoverflow.com/questions/2958701/launch-custom-android-application-from-android-browser.][1] 他们建议使用特殊方案。

<intent-filter>
    <data android:scheme="my.special.scheme" />
    <action android:name="android.intent.action.VIEW" />
</intent-filter>

并且路径就像<a href="my.special.scheme://other/parameters/here"> 在您的网络应用程序中一样。

我在模拟器上运行它。通过本地主机地址。特殊计划的确切路径是什么

我给了

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

并在按钮操作的网络应用程序中

   <FORM METHOD="LINK" ACTION="Integration://hello">
<INPUT TYPE="submit" VALUE="Clickable Button">
</FORM>

你能告诉我我在哪里做错了吗?或者正确的路径是什么

4

1 回答 1

0

当您说时"http://Integration",“http”就是方案。用你的方案替换它。 action=Integration://whatever

于 2012-05-16T07:43:41.883 回答