为什么我不能用 Titanium 创建一个基本窗口?

发布于 2024-11-29 13:35:22 字数 607 浏览 0 评论 0原文

我的 app.js 文件是:

// this sets the background color of the master UIView (when there are no windows/tab groups on it)
Titanium.UI.setBackgroundColor('#fff');

// create tab group
//var tabGroup = Titanium.UI.createTabGroup();


//
// create base UI tab and root window
//
var win1 = Titanium.UI.createWindow({  
    title:'TAB 1',
    backgroundColor:'#f00'
});

win1.addEventListener('click',function()
        {
            // set background color back to white after tab group transition
            alert('#fff');
        });

加载的只是红色的“Powered by Titanium”屏幕。我做错了什么?

My app.js file is:

// this sets the background color of the master UIView (when there are no windows/tab groups on it)
Titanium.UI.setBackgroundColor('#fff');

// create tab group
//var tabGroup = Titanium.UI.createTabGroup();


//
// create base UI tab and root window
//
var win1 = Titanium.UI.createWindow({  
    title:'TAB 1',
    backgroundColor:'#f00'
});

win1.addEventListener('click',function()
        {
            // set background color back to white after tab group transition
            alert('#fff');
        });

and all that loads is the red "Powered by Titanium" screen. What am I doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

肤浅与狂妄 2024-12-06 13:35:22

你需要打开窗户

win1.open();

you need to open the window

win1.open();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文