请有人指出如何使用Appcelerator在Android上隐藏导航栏的示例。
不是操作栏,也不是标题栏。我可以把这些藏起来。 我想创建一个完全全屏的应用程序,并隐藏导航栏
感谢
答案 0 :(得分:1)
你想要实现的是沉浸式全屏模式,可以从android 4.4中做到,但似乎Titanium不支持旗帜;有a module做这件事,没有亲自试过,但可能会做你需要的。
答案 1 :(得分:0)
在tiapp.xml文件中:
<fullscreen>true</fullscreen>
<navbar-hidden>true</navbar-hidden>
在app.tss或index.tss中:
'Window':{
navBarHidden:true,
tabBarHidden:true,
fullscreen:true
}
在index.js中:
$.index.addEventListener("open",function() {
if(OS_ANDROID) $.index.activity.actionBar.hide();
});
答案 2 :(得分:0)
使用<fullscreen>true</fullscreen>
中的tiapp.xml
,从Titanium 5.2开始,您可能会想要什么。
请参阅Release Notes。
中的隐藏软导航栏