不确定这是否可能,但希望有人有解决方案。
我试图让我的 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>