【问题标题】:How to hide the search icon in the search bar in xamarin forms如何在 xamarin 表单的搜索栏中隐藏搜索图标
【发布时间】:2018-11-30 17:21:56
【问题描述】:

我想在 Xamarin Forms 的搜索栏中隐藏搜索图标。这是我需要的 UI。

这是我正在使用的自定义渲染器

[assembly: ExportRenderer(typeof(searchTab), typeof(StyledSearchBarRenderer))]
namespace RestaurantApp.Droid.Renderers
{
    class StyledSearchBarRenderer : SearchBarRenderer
    {
        protected override void OnElementChanged(ElementChangedEventArgs<SearchBar> e)
        {
            base.OnElementChanged(e);
            if (Control != null)
            {
                var color = global::Xamarin.Forms.Color.LightGray;
                var searchView = Control as SearchView;

                int searchPlateId = searchView.Context.Resources.GetIdentifier("android:id/search_plate", null, null);
                Android.Views.View searchPlateView = searchView.FindViewById(searchPlateId);
                searchPlateView.SetBackgroundColor(Android.Graphics.Color.Transparent);

            }
        }
    }
}

这是我的 XAML 代码

  <Frame Padding="0" OutlineColor="DarkGray" HasShadow="True" HorizontalOptions="FillAndExpand"  VerticalOptions="Center">
                <local:searchTab x:Name="searchBar" Placeholder="Please search for a vendor or product name" PlaceholderColor="Black" TextColor="Black" HorizontalOptions="FillAndExpand" VerticalOptions="Center" />

            </Frame>

这是我必须隐藏的

我没有在 Xamarin Forms 中获得任何示例或任何代码来完成此操作。有什么建议吗?

【问题讨论】:

    标签: xaml search xamarin.forms searchbar


    【解决方案1】:

    在我的 Android 渲染器中我会怎么做:

    var searchView = base.Control as SearchView;
    int searchIconId = Context.Resources.GetIdentifier("android:id/search_mag_icon", null, null);
    ImageView searchViewIcon = (ImageView)searchView.FindViewById<ImageView>(searchIconId);
    searchViewIcon.setImageDrawable(null);
    

    这应该清除搜索图标

    如有查询,请随时回复。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2017-11-12
      • 2021-06-21
      • 2011-03-10
      • 1970-01-01
      • 1970-01-01
      • 2014-10-17
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多