| Parameter | Description |
|---|---|
| type | The inset types to apply the appearance to. Multiple types can be combined with bitwise OR. |
| appearance | The foreground appearance to set. |
Sets the foreground appearance of the specified inset types at runtime.
Controls whether system bar icons appear light or dark for individual inset types. Multiple inset types can be combined to set the same appearance for all of them.
Note: Only supported on Android 11 (API 30) or later.
using UnityEngine; using UnityEngine.Android;
public class Controller : MonoBehaviour { public void Start() { var insets = AndroidApplication.currentWindowInsets; insets.SetAppearance(AndroidWindowInsets.Type.StatusBars, AndroidWindowInsets.Appearance.Light); // Set both bars at once. insets.SetAppearance(AndroidWindowInsets.Type.StatusBars | AndroidWindowInsets.Type.NavigationBars, AndroidWindowInsets.Appearance.Dark); } }