I am creating application in Appcelerator Titanium. I want to make it completely full-screen but I cannot hide the navigation bar (back, home buttons). I did everything according to information in Internet but it isn't working.
in tiapp.xml:
<fullscreen>true</fullscreen>
<navbar-hidden>true</navbar-hidden>
/*** ........ ***/
<android xmlns:android="http://schemas.android.com/apk/res/android">
<manifest android:versionCode="1" android:versionName="1.0">
<application android:theme="@style/Theme.AppCompat.Translucent.NoTitleBar"/>
</manifest>
</android>
Window is created like this:
myApp.window = Ti.UI.createWindow({
backgroundColor: 'white',
theme: "Theme.AppCompat.NoTitleBar"
});
or like this:
myApp.window = Ti.UI.createWindow({
backgroundColor: 'white',
theme: "Theme.AppCompat.Translucent.NoTitleBar"
});
Navigation bar is still visible. What am I missing?