使用适用于Android的Xamarin Mono中的intent过滤器处理特定URL

前端之家收集整理的这篇文章主要介绍了使用适用于Android的Xamarin Mono中的intent过滤器处理特定URL前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图让我的活动处理网址采用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>
原文链接:https://www.f2er.com/android/309727.html

猜你在找的Android相关文章