Displays a set of windows that generate insets on screen.
Use this method to display the system bars, such as the status and navigation bars at runtime.
The following code example demonstrates how to display both the status and navigation bars at runtime.
Additional resources: AndroidApplication.onWindowInsetsChanged, AndroidApplication.currentWindowInsets, Type
using UnityEngine; using UnityEngine.Android;
public class Controller : MonoBehaviour { public void Start() { AndroidApplication.currentWindowInsets.Show(AndroidWindowInsets.Type.NavigationBars | AndroidWindowInsets.Type.StatusBars); } }