我想知道您如何在应用链接上实施后备操作。
点击锚标记时发生的动作
- Open the app
OR
- If the app doesn't exist go to marketplace
- Go to website
此刻,我采取了第一个行动。
使用下面的代码,它成功打开我的应用程序。当我单击以下锚标记时。
<a href="urlschemetest2://testurl.com"> CLICK HERE </a>
MainActivity.cs
[IntentFilter(new[] { Intent.ActionView },
Categories = new[] { Intent.CategoryDefault, Intent.CategoryBrowsable },
DataScheme = "urlschemetest2",
DataHost = "testurl.com")]
因此,如果当前未安装该应用程序,并且单击了链接,则不会发生任何事情。我希望有市场和可以访问网站的选项。