我的窗口标题在哪里?

时间:2012-09-13 10:38:07

标签: colors window titanium appcelerator title

大家,我的问题很简单: 我正在使用Android模拟器。 我尝试用标题创建一个简单的空窗口(这么简单)) 但是.....为什么这段代码不能正常运行:

Ti.UI.setBackgroundColor('#1E563F');

var win1 = Ti.UI.createWindow({
    title: 'HOY',
    exitOnClose: true
});

win1.open();

我在我的模拟器空白窗口看到标题==='我的项目名称'但是!='HOY',为什么? 如果我添加字符串         navBarHidden:true 我有空的,黑色的窗口... WTF ......我期望至少窗口有颜色==#1E563F ...

1 个答案:

答案 0 :(得分:1)

您需要创建窗口:

var win1 = Ti.UI.createWindow({
    title: 'HOY',
    exitOnClose: true,
    navBarHidden: false,
    backgroundColor: '#1E563F'   
});