我正在尝试更改导航栏中后退箭头的大小。
使用this文章中的信息,我添加了以下代码:
protected override Task<bool> OnPushAsync(Page view, bool animated)
{
var result = base.OnPushAsync(view, animated);
var activity = (Activity) Context;
var toolbar = activity.FindViewById<Toolbar>(Resource.Id.toolbar);
if (toolbar != null)
{
if (toolbar.NavigationIcon != null)
{
if (toolbar.NavigationIcon is DrawerArrowDrawable navigationIcon)
{
// Code goes here?
}
}
}
return result;
}
如果这确实是正确的路径,则在注释“代码在这里?”标记的区域中输入什么代码?
我正在尝试更改导航栏中后退箭头的大小。