我想确保我的应用链接在真实设备上运行。这是我的Xamarin代码:
[Activity(Theme = "@style/Theme.Splash", Label = "MyappName", MainLauncher = true, Icon = "@drawable/icon")]
[IntentFilter(new[] { Android.Content.Intent.ActionView },
DataScheme = "http",
DataHost = "www.mywebsite.net",
Categories = new[] { Android.Content.Intent.CategoryDefault, Android.Content.Intent.CategoryBrowsable })]
这是有效的:
这是不起作用的:
我如何确保这有效?这种机制应该在真实设备上运行。对于维基百科,它确实有效。