如何在xamarin表单中移动右侧搜索栏的搜索图标

时间:2017-12-09 10:57:53

标签: xamarin.forms

如何在xamarin表单中移动右侧搜索栏的搜索图标。 我正在寻找android和IOS。 对于Android我使用SearchBarRenderer使用下面的代码不起作用 有谁知道怎么做?请帮忙。

 protected override void OnElementChanged(ElementChangedEventArgs<SearchBar> e)
    {
        base.OnElementChanged(e);
        Control.LayoutParameters=(new ActionBar.LayoutParams(GravityFlags.Right));
    }

1 个答案:

答案 0 :(得分:0)

在Android中,使用自定义渲染器,您可以使用以下代码将搜索图标放在搜索栏的右侧:

    protected override void OnElementChanged(ElementChangedEventArgs<SearchBar> e)
    {
        base.OnElementChanged(e);
        if (e.NewElement != null)
        {
            var searchView = base.Control as SearchView;

            //Get the Id for your search icon
            int searchIconId = Context.Resources.GetIdentifier("android:id/search_mag_icon", null, null);
            ImageView searchViewIcon = (ImageView)searchView.FindViewById<ImageView>(searchIconId);
            ViewGroup linearLayoutSearchView = (ViewGroup)searchViewIcon.Parent;

            searchViewIcon.SetAdjustViewBounds(true);

            //Remove the search icon from the view group and add it once again to place it at the end of the view group elements
            linearLayoutSearchView.RemoveView(searchViewIcon);
            linearLayoutSearchView.AddView(searchViewIcon);
        }
    }

在上面的实现中,我只是从搜索栏视图组中删除了搜索图标,然后将其再次添加到同一视图组。这将正常的第一个孩子放在最后一个孩子身上,从而将搜索图标放在最后。