Hi

Hi,

In lightning launcher settings I can hide the status bar, But there is no option to hide the nav bar.

So is there another way to hide it?

If there is, could someone provide step by step instructions because I’m a beginner when it comes to scripts etc?

Thanks.

]]>

6 Commentsto Hi

  1. Anonymous says:

    < ![CDATA[

    search the community theres already a script to do it.

    ]]>

  2. Anonymous says:

    < ![CDATA[

    Is it…


    bindClass(“android.view.Window”);


    bindClass(“android.view.View”);



    var decorView = LL.getContext().getWindow().getDecorView();


    // Hide both the navigation bar and the status bar.


    // SYSTEM_UI_FLAG_FULLSCREEN is only available on Android 4.1 and higher, but as


    // a general rule, you should design your app to hide the status bar whenever you


    // hide the navigation bar.


    var uiOptions = View.SYSTEM_UI_FLAG_HIDE_NAVIGATION


                  | View.SYSTEM_UI_FLAG_FULLSCREEN;


    decorView.setSystemUiVisibility(uiOptions);



    I found that but I don’t know how to use it

    ]]>

  3. Anonymous says:

    < ![CDATA[

    easiest way copy it to clipboard open app drawer tap script editor paste in the script. slide out the drawer from the left side of the screen give the script a name and put a tick in the box that says lightning menu. Go back to your homescreen long press it then scripts

    ]]>

  4. Anonymous says:

    < ![CDATA[

    Cool… it works, thanks!

    ]]>

  5. Anonymous says:

    < ![CDATA[

    Is there a way to keep the immersive mode?


    Because after I run the script, it works but as soon as I touch the screen the system bars become visible again?

    ]]>

  6. Anonymous says:

    < ![CDATA[

    Ah, I just found the second script so I can work with that.

    ]]>

Leave a Reply

Your email address will not be published. Required fields are marked *