studio oreo modo inmersivo android android-immersive

studio - modo inmersivo android oreo



Modo inmersivo mostrando espacio en blanco (3)

Estoy tratando de implementar un modo de pantalla completa, pero para Android 4.4 y superior, muestra un espacio en blanco allí:

ANTES del modo inmersivo (pantalla completa)

y DESPUÉS de toggleFullScreen (false);

Como puedes ver, no lo elimina . Aquí está el código que estoy usando para cambiarlo:

public void toggleFullscreen(boolean fs) { if (Build.VERSION.SDK_INT >= 11) { // The UI options currently enabled are represented by a bitfield. // getSystemUiVisibility() gives us that bitfield. int uiOptions = this.getWindow().getDecorView().getSystemUiVisibility(); int newUiOptions = uiOptions; boolean isImmersiveModeEnabled = ((uiOptions | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) == uiOptions); if (isImmersiveModeEnabled) { Log.i(getPackageName(), "Turning immersive mode mode off. "); } else { Log.i(getPackageName(), "Turning immersive mode mode on."); } // Navigation bar hiding: Backwards compatible to ICS. if (Build.VERSION.SDK_INT >= 14) { newUiOptions ^= View.SYSTEM_UI_FLAG_HIDE_NAVIGATION; } // Status bar hiding: Backwards compatible to Jellybean if (Build.VERSION.SDK_INT >= 16) { newUiOptions ^= View.SYSTEM_UI_FLAG_FULLSCREEN; } // Immersive mode: Backward compatible to KitKat. // Note that this flag doesn''t do anything by itself, it only augments the behavior // of HIDE_NAVIGATION and FLAG_FULLSCREEN. For the purposes of this sample // all three flags are being toggled together. // Note that there are two immersive mode UI flags, one of which is referred to as "sticky". // Sticky immersive mode differs in that it makes the navigation and status bars // semi-transparent, and the UI flag does not get cleared when the user interacts with // the screen. if (Build.VERSION.SDK_INT >= 18) { newUiOptions ^= View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY; } getWindow().getDecorView().setSystemUiVisibility(newUiOptions); } else { // for android pre 11 WindowManager.LayoutParams attrs = getWindow().getAttributes(); if (fs) { attrs.flags |= WindowManager.LayoutParams.FLAG_FULLSCREEN; } else { attrs.flags &= ~WindowManager.LayoutParams.FLAG_FULLSCREEN; } this.getWindow().setAttributes(attrs); } try { // hide actionbar if (this instanceof AppCompatActivity) { if (fs) getSupportActionBar().hide(); else getSupportActionBar().show(); } else if (Build.VERSION.SDK_INT >= 11) { if (fs) getActionBar().hide(); else getActionBar().show(); } } catch (Exception e) { e.printStackTrace(); } }


Debe agregar este indicador a su vista Ver.SYSTEM_UI_FLAG_LAYOUT_STABLE. Pruébalo así

// This snippet hides the system bars. private void hideSystemUI() { // Set the IMMERSIVE flag. // Set the content to appear under the system bars so that the content // doesn''t resize when the system bars hide and show. mDecorView.setSystemUiVisibility( View.SYSTEM_UI_FLAG_LAYOUT_STABLE | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION // hide nav bar | View.SYSTEM_UI_FLAG_FULLSCREEN // hide status bar | View.SYSTEM_UI_FLAG_IMMERSIVE); } // This snippet shows the system bars. It does this by removing all the flags // except for the ones that make the content appear under the system bars. private void showSystemUI() { mDecorView.setSystemUiVisibility( View.SYSTEM_UI_FLAG_LAYOUT_STABLE | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN); }


Por favor verifica que no tengas android:fitsSystemWindows="true" en tu diseño android:fitsSystemWindows="true" .

Al menos resolvió mi caso: tenía fitSystemWindows en FrameLayout.


Soy nuevo aquí, así que no puedo hacer comentarios, pero quería agregar algo que me frustraba tanto por la solución anterior. Seguí revisando mis actividades y sus fragmentos para android:fitsSystemWindows="true" y definitivamente no estaba allí, ¡pero seguí teniendo un hueco en la parte inferior! ¡Me estaba volviendo loco! ¡No podría ser tan difícil arreglar esta simple cosa!

Resulta que también apareció en el cajón de navegación que agregué ... ¡así que asegúrate de revisar todo tu XML!