En este artículo, vamos a aprender cómo habilitar la pantalla completa en Android Studio. Por ejemplo, si estamos viendo una imagen especialmente, queremos verla en pantalla completa. Aquí lo que vamos a implementar es que básicamente estamos ocultando la navegación, la barra de estado y habilitando el modo de pantalla completa. Vamos a discutir 4 métodos diferentes para hacer esta tarea.
Método 1
El siguiente es el código para ocultar la navegación y habilitar el modo de pantalla completa.
// This is the code to hide the navigation and enabling full screen mode View.SYSTEM_UI_FLAG_IMMERSIVE // Set the content to appear under the system bars so that the // content doesn't resize when the system bars hide and show. | View.SYSTEM_UI_FLAG_LAYOUT_STABLE | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN // Hide the nav bar and status bar | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION | View.SYSTEM_UI_FLAG_FULLSCREEN);
Método 2
Hizo estos cambios en su archivo manifest.xml
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
Método 3
Hizo estos cambios en su archivo styles.xml
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> <!-- Customize your theme here. --> <item name="android:windowFullscreen">true</item> </style>
Método 4
Hizo estos cambios en su archivo styles.xml
<item name="windowActionBar">false</item> <item name="windowNoTitle">true</item>