I think i tried thousands of combinations, but after hours and hours i did not get any results. I'm trying to hide the STATUS BAR and the NAVIGATION BAR.
This is the actual result (only the splashscreen is ok) :
I read several tickets / questions.
https://www.appcelerator.com/blog/2014/08/hiding-the-android-actionbar/
https://www.appcelerator.com/blog/2016/03/titanium-5-2-0-wrap-up-of-new-features-for-android/
Solutions I've tried
app.js
win.fullscreen = true / false;
win.navBarHidden = true / false;
tiapp.xml
<fullscreen>true/false</fullscreen>
<navbar-hidden>false/false</navbar-hidden>
<statusbar-hidden>true/false</statusbar-hidden>
tiapp.xml (section <android xmlns:android="http://schemas.android.com/apk/res/android">)
<android xmlns:android="http://schemas.android.com/apk/res/android">
<manifest>
<application android:theme="@style/Theme.AppCompat.Translucent.NoTitleBar.Fullscreen"/>
</manifest>
</android>

