# Hide(Type)

> Hides a set of windows that generate insets.

## Definition

* **Type:** Method
* **Namespace:** [UnityEngine.Android](/engine/6000.7/script-reference/unityengine/android.md)
* **Assembly:** UnityEngine.AndroidJNIModule

```csharp
public void Hide(AndroidWindowInsets.Type type)
```

### Parameters

**** (\[Type]\(/engine/6000.7/script-reference/unityengine/android/androidwindowinsets/type)):&#x20;

### Remarks

Use this method to hide the system bars, allowing your application to use the available screen space when in full-screen mode.

Additional Resources: [\_onWindowInsetsChanged](/engine/6000.7/script-reference/unityengine/android/androidapplication/onwindowinsetschanged.md), [\_currentWindowInsets](/engine/6000.7/script-reference/unityengine/android/androidapplication/currentwindowinsets.md), [Type](/engine/6000.7/script-reference/unityengine/android/androidwindowinsets/type.md)

### Examples

```csharp
using UnityEngine;
using UnityEngine.Android;

public class Controller : MonoBehaviour
{
    public void Start()
    {
        AndroidApplication.currentWindowInsets.Hide(AndroidWindowInsets.Type.NavigationBars | AndroidWindowInsets.Type.StatusBars);
    }
}
```
