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.
Additional Resources: PlayerSettings.Android.SetInsetsAppearance, AndroidWindowInsetsType.
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); }}