SetSystemBarsBehavior(SystemBarsBehavior)
Controls the behavior of system bars.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Method
- Namespace: UnityEngine.Android
- Assembly: UnityEngine.AndroidJNIModule
public void SetSystemBarsBehavior(AndroidWindowInsets.SystemBarsBehavior behavior)
Parameters
Remarks
This method allows you to configure how the system bars, such as the status and navigation bars, should respond to system gestures in your application.
Note: Only supported on Android 11 (API 30) or later. Has no effect on Android 10 (API 29) or earlier versions.
Additional Resources: SystemBarsBehavior
Examples
using UnityEngine;using UnityEngine.Android;public class Controller : MonoBehaviour{ public void Start() { AndroidApplication.currentWindowInsets.SetSystemBarsBehavior(AndroidWindowInsets.SystemBarsBehavior.ShowTransientBarsBySwipe); }}