AndroidWindowInsets.Type
Options for specifying different types of system UI elements that generate window insets.
Read time 1 minuteLast updated 5 days ago
Definition
- Type: Enum
- Namespace: UnityEngine.Android
- Assembly: UnityEngine.AndroidJNIModule
[Flags]public enum AndroidWindowInsets.Type
Remarks
Use this enum with AndroidWindowInsets.Hide, AndroidWindowInsets.IsVisible, and AndroidWindowInsets.Show methods to retrieve and modify the current state of the status bar, navigation bar, or both at runtime.
Examples
using UnityEngine;using UnityEngine.Android;public class Controller : MonoBehaviour{ public void Start() { AndroidApplication.currentWindowInsets.Show(AndroidWindowInsets.Type.StatusBars | AndroidWindowInsets.Type.NavigationBars); }}
Fields
Value | Description |
|---|---|
| NavigationBars | Represents the area of the screen the system navigation elements occupy. |
| StatusBars | Represents the area of the screen the system status bar occupies at the top of the screen. |