AppLink Xamarin表示不编制索引

时间:2018-02-26 07:44:22

标签: xamarin xamarin.forms xamarin.ios applinks

我想知道你是否可以提供帮助,这实际上让我发疯了。我正在尝试在Lightning lecture之后将深层链接集成到我的应用中,但它根本不起作用。我甚至无法在聚光灯搜索中显示我的项目。

所以我创建了一个全新的项目,所有默认的新解决方案 - >表单应用程序。

默认应用是一个待办事项列表应用,我只添加了两个方法

AppLinkEntry GetAppLink(ItemDetailViewModel item)
    {
        var pageType = GetType().ToString();
        var pageLink = new AppLinkEntry
        {
            Title = item.Title,
            Description = item.Title,
            AppLinkUri = new Uri(string.Format("http://website1120180225101729.azurewebsites.net/?id={0}",item.Title.Replace(" ","") ), UriKind.RelativeOrAbsolute),
            IsLinkActive = true,
            Thumbnail = ImageSource.FromFile("xamarin_logo.png")
        };

        return pageLink;
    }
    protected override void OnAppearing()
    {
        appLink = GetAppLink(BindingContext as ItemDetailViewModel);
        if (appLink != null)
        {
            appLink.IsLinkActive = true;
            Application.Current.AppLinks.RegisterLink(appLink);
        }
    }

请参阅下面的打印屏幕。它注册了一个应用程序链接

Breakpoint

但是,当我最小化应用程序并开始聚焦搜索时,它不会出现在那里 enter image description here

0 个答案:

没有答案