appcelerator titan - 选项卡组中的编辑按钮不会消失

发布于 2024-12-06 17:11:31 字数 889 浏览 1 评论 0原文

使用 Titanium mobile sdk 1.7.2,我创建了一个包含 11 个选项卡的选项卡组。问题是当我打开“更多”选项卡内的任何选项卡时,如果子窗口有右侧导航栏按钮,有时“更多”选项卡的“编辑”按钮不会消失。

我的代码是:

app.js:

var tabGroup=Titanium.UI.createTabGroup({top:20});
............
/** list of windows and tabs **/
............
var win9 = Titanium.UI.createWindow({ 
    url:'discover.js',
    title:'Discover',
    navBarHidden:true,
    barColor: navBarColor
});
var tab9 = Titanium.UI.createTab({  
    icon:'images/icons/Discover.png',
    title:'Discover',
    window:win9
});

discover.js:

win=Titanium.UI.currentWindow;
var btn=Titanium.UI.createButton({title:'Discover'});
btn.addEventListener('click',function (){
    //do some stuff
});
win.rightNavButton=btn;

问题是,有时当我打开打开“win9”的“tab9”时,我的按钮(btn)不会出现,而是显示“更多”的“编辑”按钮。

注意:点击事件侦听器工作得很好,“编辑”标题仍然存在。有谁知道如何解决这个问题?

谢谢你,

Using Titanium mobile sdk 1.7.2, I created a tabgroup with 11 tabs. The problem is when I open any of the tabs inside the 'more' tab, if the child window has a right navbar button, some times the 'edit' button of the 'more' tab doesn't go away..

my code is:

app.js:

var tabGroup=Titanium.UI.createTabGroup({top:20});
............
/** list of windows and tabs **/
............
var win9 = Titanium.UI.createWindow({ 
    url:'discover.js',
    title:'Discover',
    navBarHidden:true,
    barColor: navBarColor
});
var tab9 = Titanium.UI.createTab({  
    icon:'images/icons/Discover.png',
    title:'Discover',
    window:win9
});

discover.js:

win=Titanium.UI.currentWindow;
var btn=Titanium.UI.createButton({title:'Discover'});
btn.addEventListener('click',function (){
    //do some stuff
});
win.rightNavButton=btn;

the problem is, sometimes when I open the 'tab9' which opens 'win9' my button (btn) doesn't appear, the 'edit' button of the 'more' is shown instead.

N.B: the click event listener works just fine, It is the 'edit' title that persists. Any one knows how to solve this?

thank you,

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

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

发布评论

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

评论(2

忆依然 2024-12-13 17:11:31

您需要在选项卡组中设置 allowUserCustomization:false

var tabGroup=Titanium.UI.createTabGroup({top:20,allowUserCustomization:false});

You need to set allowUserCustomization:false in your Tabgroup.

var tabGroup=Titanium.UI.createTabGroup({top:20,allowUserCustomization:false});
甜尕妞 2024-12-13 17:11:31

尝试设置

win.rightNavButton = null;
win.rightNavButton = btn;

try to set

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