4

我想处理这个URL,但我的代码不能正常工作。

http://melkplus.com/#!/property/details/765


实际上,当我点击这个时URL,我的手机并没有向我推荐我的应用程序,它只是通过浏览器打开。
我认为应用程序有问题#!在URL.

<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:host="melkplus.com"
    android:scheme="http"
    android:pathPrefix="/#!/property/details/" />
</intent-filter>
4

1 回答 1

2

以 开头的所有#内容都不是 URL 路径的一部分,而是片段。您无法过滤片段。

于 2017-12-09T14:47:35.440 回答