Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


AndroidWindowInsetsAppearance

Controls the foreground appearance of system bar icons and text.
Read time 1 minuteLast updated 13 days ago

Definition

  • Type: Enum
  • Namespace: UnityEditor
  • Assembly: UnityEditor.CoreModule
public enum AndroidWindowInsetsAppearance : uint

Remarks

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.

Examples

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); }}

Fields

Value

Description

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