HOWTO:操纵导航栏上的后退箭头图标(Xamarin Forms / Android)

问题描述 投票:0回答:1

我正在尝试更改导航栏中后退箭头的大小。

使用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;
}

如果这确实是正确的路径,则在注释“代码在这里?”标记的区域中输入什么代码?

xamarin.forms xamarin.android
1个回答
0
投票

我正在尝试更改导航栏中后退箭头的大小。

© www.soinside.com 2019 - 2024. All rights reserved.