Skip to main content
ON

ThemeManager.AndroidStatusBarBackground Property

Gets or sets the status bar’s background color (works for Android 14 and earlier versions only).

Namespace: DevExpress.Maui.Core

Assembly: DevExpress.Maui.Core.dll

NuGet Package: DevExpress.Maui.Core

Declaration

public static Color AndroidStatusBarBackground { get; set; }

Property Value

Type Description
Color

The status bar’s background color (works for Android 14 and earlier versions only).

Remarks

You can use the following properties to apply theme colors to device bars:

Property Description
AndroidNavigationBarForeground Gets or sets the theme used by device navigation bar icons (works for Android 14 and earlier versions only).
AndroidNavigationBarBackground Gets or sets the background color of the device’s navigation bar (works for Android 14 and earlier versions only).
AndroidStatusBarBackground Gets or sets the status bar’s background color (works for Android 14 and earlier versions only).
StatusBarForeground Gets or sets the theme that is used in device navigation bar icons.
ApplyThemeToSystemBars Gets or sets whether the color theme is applied to system bars.
ThemeManager.Theme = new Theme(ThemeSeedColor.DarkGreen);
ThemeManager.AndroidStatusBarBackground = AppTheme.Light;
See Also