7

不确定这是否可能,但希望有人有解决方案。

我试图让我的 Android 应用程序拦截 mydomain.com/abc 形式的 url,但不拦截 mydomain.com/mp3/id

是否有可能使用 pathPattern 排除某些路径?

<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" />
                <data android:host="mydomain.com" />
                <data android:pathPattern="/.*" /> />
        </intent-filter>
4

1 回答 1

0

pathPattern 的工作方式更像 glob 而不是 regexp。如果你真的是指 mydomain/abc,你应该可以指定 android:host="mydomain.com" android:pathPattern="abc",但我猜你的意思是

匹配 mydomain.com/x

不匹配 mydomain/x/y

我不认为这是可能的。如果是,它可能涉及到一些 pathPrefix 的使用。

于 2013-10-01T02:51:40.887 回答