在 Titanium 中为新窗口添加标题

发布于 2024-11-29 04:58:17 字数 617 浏览 0 评论 0原文

我正在尝试通过配置页面的按钮打开一个新窗口,但是如何向新创建的窗口添加标题(在屏幕顶部)?

在起始页面上,我创建了一个按钮来打开一个新页面,如下所示:

var btnConfig = Ti.UI.createButton({
    backgroundImage:'img/settings.png',
    height:33,
    width:33
});
win1.rightNavButton = btnConfig;

btnConfig.addEventListener('click',function(){
    Ti.include('win_config.js');
})

然后在 win_config.js 上:

var win_config = Titanium.UI.createWindow({  
    title:"Configure",    
    backgroundColor:'#BBB',
});

win_config.open({
    transition:Ti.UI.iPhone.AnimationStyle.FLIP_FROM_LEFT
});

我认为只需设置“标题”,它就会出现,但显然它不会。

I'm trying to open a new window via a button to the configuration page but how do you add a title (at the top of the screen) to a newly created window?

On the starting page, I have a button created to open a new page as:

var btnConfig = Ti.UI.createButton({
    backgroundImage:'img/settings.png',
    height:33,
    width:33
});
win1.rightNavButton = btnConfig;

btnConfig.addEventListener('click',function(){
    Ti.include('win_config.js');
})

Then on win_config.js :

var win_config = Titanium.UI.createWindow({  
    title:"Configure",    
    backgroundColor:'#BBB',
});

win_config.open({
    transition:Ti.UI.iPhone.AnimationStyle.FLIP_FROM_LEFT
});

I thought that by just setting "title" it'll appear but apparently it doesnt.

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

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

发布评论

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

评论(1

尹雨沫 2024-12-06 04:58:17

需要在createWindow中添加“modal:true”

var win_config = Titanium.UI.createWindow({  
    title:"Configure",    
    backgroundColor:'#BBB',
    modal:true

});

needed to add "modal:true" in the createWindow

var win_config = Titanium.UI.createWindow({  
    title:"Configure",    
    backgroundColor:'#BBB',
    modal:true

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