maui-devexpress-dot-maui-dot-core-dot-thememanager-a6890881.md
Gets or sets the background color of the device’s navigation bar (works for Android 14 and earlier versions only).
Namespace : DevExpress.Maui.Core
Assembly : DevExpress.Maui.Core.dll
NuGet Package : DevExpress.Maui.Core
public static Color AndroidNavigationBarBackground { get; set; }
| Type | Description |
|---|---|
| Color |
The background color of the device’s navigation bar (works for Android 14 and earlier versions only).
|
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.AndroidNavigationBarBackground = AppTheme.Light;
See Also