Page 1 of 1

Android: Hide Navigation-Bar

Posted: Tue Jun 25, 2019 11:32 am
by fingus
Android: Hide Navigation-Bar (that on on Bottom with BACK, HOME and TASKVIEW).

Re: Android: Hide Navigation-Bar

Posted: Wed Jun 26, 2019 7:41 pm
by airsoftsoftwair
Could easily be implemented with APK Compiler Pro's feature to run custom Java code but I'll consider it as a standard Hollywood feature as well :)

Re: Android: Hide Navigation-Bar

Posted: Fri Oct 04, 2019 10:49 pm
by xabierpayet
i try to remove the bar with java, and don´t work here, can you make a little tutorial ?

Re: Android: Hide Navigation-Bar

Posted: Tue Oct 15, 2019 3:54 pm
by airsoftsoftwair
Should be possible by just calling...

Code: Select all

HollywoodActivity.mSingleton.showHideActionBar(false);
...in a method.

Re: Android: Hide Navigation-Bar

Posted: Thu Dec 12, 2019 11:29 pm
by xabierpayet
i don´t understand how do it, i attempt it changing in the manifest the line
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
but i have an error, it´s weird

Re: Android: Hide Navigation-Bar

Posted: Sat Dec 14, 2019 5:14 pm
by airsoftsoftwair

Code: Select all

- New [Android]: Added support for immersive full screen mode; if that mode is used, all Android system
  bars will be hidden completely; you can enable immersive mode by setting the "ImmersiveMode" tag either
  in @DISPLAY, CreateDisplay() or SetDisplayAttributes(); there are three different immersive modes:
  #IMMERSIVE_NORMAL, #IMMERSIVE_LEANBACK and #IMMERSIVE_STICKY; you can also query the current immersive
  mode of a display using the new #ATTRIMMERSIVEMODE attribute

Re: Android: Hide Navigation-Bar

Posted: Sat Dec 14, 2019 5:39 pm
by airsoftsoftwair

Code: Select all

- New [Android]: Added "ShowSystemBars" and "HideSystemBars" event handlers; these will trigger when the
  system bars are shown/hidden in immersive mode; you can also query #ATTRSYSTEMBARS to learn about the
  system bars' current visibility state

Re: Android: Hide Navigation-Bar

Posted: Sat Dec 14, 2019 9:30 pm
by xabierpayet
Cool, you are great

Re: Android: Hide Navigation-Bar

Posted: Sun Dec 15, 2019 3:17 pm
by LarsB
Yeah, thats very useful. Thanks, Andreas.