从意图过滤器中排除子域

时间:2017-07-05 13:35:35

标签: android intentfilter

我正在使用我的应用程序使用以下intent过滤器:

 <intent-filter android:autoVerify="true">
                <action android:name="android.intent.action.VIEW" />

                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />

                <data
                    android:host="*.myhost.com"
                    android:pathPattern=".*"
                    android:scheme="https" />
 </intent-filter>

我想在我们的应用中打开与该域名相关的所有链接,但

等特定子域名除外
subdomain.myhost.com

如何在此处排除子域?

0 个答案:

没有答案