如何在 Xamarin App.Shell 中更改 Android ActionBar 颜色

How to change Android ActionBar color in Xamarin App.Shell

我正在使用 Xamarin 和 .netstandard 2.1 开发一个应用程序,但找不到更改 android 应用程序的操作栏的方法。

蓝色条不是我想要的颜色,按照互联网上的所有文档和教程,我什至找到了一种更改状态栏(时钟、电池和通知所在的位置)的方法,但是不能'不要将此蓝色更改为橙​​色。

有人可以告诉我我做错了什么吗?

谢谢

将附加的 属性 BackgroundColor="Red" 全局设置为 <Shell> 级别:

<Shell
       ...
       BackgroundColor="Red">

或在 ContentPage 级别使用:

<ContentPage
       ...
       Shell.BackgroundColor="Red">

请注意,这会影响导航栏(您描述的那个)和上方的选项卡 (TabBar)。

在您的 shell 应用 xaml 文件中,在顶部使用 Shell.BackgroundColor="Red"。

<Shell xmlns="http://xamarin.com/schemas/2014/forms" 
       xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
       xmlns:local="clr-namespace:App1.Views"
       Title="App1"
       x:Class="App1.AppShell"
       Shell.BackgroundColor="Red"
       >