Version: Unity 6.7 Alpha (6000.7)
LanguageEnglish
  • C#

AndroidWindowInsetsAppearance

enumeration

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

Controls the foreground appearance of system bar icons and text.

Use this enum with PlayerSettings.Android.SetInsetsAppearance and PlayerSettings.Android.GetInsetsAppearance to configure the appearance of system bar icons per inset type at build time. Requires Android 11 (API 30) or higher.

Additional resources: PlayerSettings.Android.SetInsetsAppearance, AndroidWindowInsetsType.

using UnityEditor;

public class ApplyInsetsAppearance { public static void Setup() { // Set the status bar to use light icons (suitable for dark backgrounds). PlayerSettings.Android.SetInsetsAppearance(AndroidWindowInsetsType.StatusBars, AndroidWindowInsetsAppearance.Light);

// Set the navigation bar to use dark icons (suitable for light backgrounds). PlayerSettings.Android.SetInsetsAppearance(AndroidWindowInsetsType.NavigationBars, AndroidWindowInsetsAppearance.Dark); } }

Properties

Property Description
LightLight icons, suitable for dark backgrounds behind the system bars.
DarkDark icons, suitable for light backgrounds behind the system bars.