var fenetreBase = Titanium.UI.createWindow({fullscreen:true,backgroundColor:"white"});
fenetreBase.open();
无论何时,这段代码都不会“隐藏”你的appli的名字(在灰色的“标题”中); 是因为我在模拟器上运行程序吗?或者我们不能只隐藏它? (目前使用android 4.0.3)
thinqs
答案 0 :(得分:0)
var win = Ti.UI.createWindow({
fullscreen:true,
navBarHidden:true,
backgroundColor: 'white'
});