我正在尝试更改SearchBarRenderer Android自定义渲染器中的搜索图标
这就是我的尝试
Control.Iconified = false;
Control.SetIconifiedByDefault(false);
var searchView = Control.FindViewById<ImageView>(Resource.Id.search_button);
var searchicon = Resources.GetDrawable(Resource.Drawable.search);
searchView.SetImageDrawable(searchicon);
但是,searchIcon始终为null
当我通过SearchView的子项循环时,我找到了ID为16909229的图像视图,但设置了可绘制的图像并没有改变搜索图标
我正在尝试更改SearchBarRenderer Android自定义渲染器中的搜索图标
像这样修改你的代码:
[assembly:ExportRenderer(typeof(SearchBar), typeof(MySearchBarRenderer))]
namespace yourprjectnamespace
{
public class MySearchBarRenderer : SearchBarRenderer
{
public MySearchBarRenderer(Context context) : base(context)
{
}
protected override void OnElementChanged(ElementChangedEventArgs<Xamarin.Forms.SearchBar> e)
{
base.OnElementChanged(e);
if (Control != null)
{
var searchView = Control;
int searchViewCloseButtonId = Control.Resources.GetIdentifier("android:id/search_mag_icon", null, null);
var closeIcon = searchView.FindViewById(searchViewCloseButtonId);
(closeIcon as ImageView).SetImageResource(Resource.Mipmap.icon);
}
}
}
}
如果您使用的是android.support.v7.widget.SearchView
,可以尝试将其设置为:
var searchIcon = (ImageView) searchView.FindViewById(Resource.Id.search_mag_icon);
searchIcon.SetImageResource(Resource.Drawable.my_custom_search_icon);
来源:https://stackoverflow.com/a/20362491/6248510这不是同一个问题,但它与它有关,在答案中它包括一个设置它的方法