嗨,我必须在浏览器和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">
在您的网络应用中。
我在模拟器上运行它。通过localhost地址。什么是确切的路径 特别计划
我已经给了
<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>
你可以告诉我我在哪里做错了吗?那么什么是正确的路径呢
答案 0 :(得分:0)
当你说"http://Integration"
时,“http”就是这个方案。用你的方案替换它。
action=Integration://whatever