作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 https://developer.xamarin.com/api/member/Xamarin.Forms.Application.OnAppLinkRequestReceived/p/System.Uri/但似乎无法以任何方式调用它。
有没有人尝试过实现这种新方法?
我尝试了几种方法来实现不同的深层链接,所有这些方法都可以很好地打开应用程序,因此它们已正确配置,但从未调用过该方法。
谢谢。
最佳答案
这就是我在Android中设置它的方式。
把它放在你的 MainActivity.cs 上面
[IntentFilter(new[] { Android.Content.Intent.ActionView },
Categories = new[]
{
Android.Content.Intent.CategoryDefault,
Android.Content.Intent.CategoryBrowsable
},
DataScheme = "http",
DataPathPrefix = "/tesla/",
DataHost = "exrin.net")]
AndroidAppLinks.Init(this);
protected override void OnAppLinkRequestReceived(Uri uri)
{
base.OnAppLinkRequestReceived(uri);
}
关于Xamarin.forms OnAppLinkRequestReceived,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38250142/
我正在尝试使用 https://developer.xamarin.com/api/member/Xamarin.Forms.Application.OnAppLinkRequestReceived/
我是一名优秀的程序员,十分优秀!