例如,如果我有一个名为:
http://www.testmycars.com
当有人在他的 android 设备搜索应用程序中搜索雪佛兰时,我希望这个 html 文件被编入索引并显示指向我的应用程序内容的链接:
http://www.testmycars.com/cars/huge/chevrolet.html
所以我将其添加到该 html 文件的头部:
<link rel="alternate" href="android-app://com.mycompany.myapp/http/section/chevrolet"/>
我将此意图过滤器添加到我的 android 清单中:
<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="http"
android:host="section" />
</intent-filter>
它会与意图过滤器中的主机属性和我的 html 头部中的 URI 一起使用吗?我不想指定完整的网站,因为我正在使用一个应用程序生成器,它为此意图过滤器构建了许多具有相同主机属性的 apk。谷歌应用索引是否适用于此代码?
谢谢