我试图让我的活动处理网址采用mydomain.com或www.mydomain.com形式的http和https方案.目前,我的活动的IntentFilter属性如下所示:
[IntentFilter( new[] { Intent.ActionView },Categories = new[] { Intent.CategoryDefault,Intent.CategoryBrowsable },DataHost = "mydomain.com",DataScheme = "http" )]
这在清单中生成了这个,并且似乎不适用于任何所需的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="mydomain.com" android:scheme="http" /> </intent-filter>
如何更改此属性,以便我的活动将处理http(s)://(www.)mydomain.com形式的所有网址?
解决方法
您可以添加多个intent过滤器属性
[IntentFilter( new[] { Intent.ActionView },DataScheme = "http" )] [IntentFilter( new[] { Intent.ActionView },DataScheme = "https" )] [IntentFilter( new[] { Intent.ActionView },DataHost = "*.mydomain.com",DataScheme = "https" )] public class MyActivity : Activity {}
得到的xml将是
<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="mydomain.com" android:scheme="http" /> </intent-filter> <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="mydomain.com" android:scheme="https" /> </intent-filter> <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="*.mydomain.com" android:scheme="http" /> </intent-filter> <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="*.mydomain.com" android:scheme="https" /> </intent-filter>