嗨,我必须在浏览器和安卓应用程序之间建立连接。我提到了链接[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">
在 Web 应用中。
我正在模拟器上运行它。 通过本地主机地址。确切的路径是什么特别方案
我给了
<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>
和在 Web 应用中的按钮操作
<FORM METHOD="LINK" ACTION="Integration://hello">
<INPUT TYPE="submit" VALUE="Clickable Button">
</FORM>
你能告诉我我哪里做错了吗。 或者正确的路径是什么
当你说"http://Integration"
时,"http"是方案。将其替换为您的方案。 action=Integration://whatever