如何从浏览器打开 android 应用程序
How to open an android application from browser
给出的模式是 "desk://" 我的 application.How 当我从浏览器调用它时,我可以打开我的应用程序吗?我访问了很多网站,但无法正确得出结论。
通过将以下元素添加到我的清单中 Activity 的 Intent 过滤器中,我能够完成您对我个人网站的要求:
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="zackmatthews.com"
android:pathPrefix="/projects/"
android:scheme="http" />
<data
android:host="www.zackmatthews.com"
android:pathPrefix="/projects/"
android:scheme="http" />
单击 link 到我的项目页面时,会产生以下输出:
给出的模式是 "desk://" 我的 application.How 当我从浏览器调用它时,我可以打开我的应用程序吗?我访问了很多网站,但无法正确得出结论。
通过将以下元素添加到我的清单中 Activity 的 Intent 过滤器中,我能够完成您对我个人网站的要求:
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="zackmatthews.com"
android:pathPrefix="/projects/"
android:scheme="http" />
<data
android:host="www.zackmatthews.com"
android:pathPrefix="/projects/"
android:scheme="http" />
单击 link 到我的项目页面时,会产生以下输出: