在Titanium Studio中隐藏窗口名称

时间:2013-12-10 10:53:09

标签: android titanium titanium-mobile

这可能是愚蠢但我不明白。有史以来最简单的代码:

var  fenetreBase = Titanium.UI.createWindow({fullscreen:true,backgroundColor:"white"});

fenetreBase.open();

无论何时,这段代码都不会“隐藏”你的appli的名字(在灰色的“标题”中); 是因为我在模拟器上运行程序吗?或者我们不能只隐藏它? (目前使用android 4.0.3)

thinqs

1 个答案:

答案 0 :(得分:0)

var win = Ti.UI.createWindow({
    fullscreen:true,
    navBarHidden:true,
    backgroundColor: 'white'
});