Javascript Appcelerator中的自定义选项卡栏-如何返回到根窗口?

Javascript Appcelerator中的自定义选项卡栏-如何返回到根窗口?,javascript,ios,titanium,appcelerator,appcelerator-mobile,Javascript,Ios,Titanium,Appcelerator,Appcelerator Mobile,我在Appcelerator Tianium上开发的iOS应用程序中有一个bug需要修复 我一直在使用customTabBar()创建一个定制的tabBar,效果非常好 唯一的小问题是,它删除了在图标上设置tab并返回到根窗口的选项(就像在iOS中使用适当的本机tabBar一样) 因此,如果我在我的应用程序中向下钻取3或4个窗口,点击tab图标没有任何作用,我必须通过多次点击返回来导航到开始 下面是我正在使用的完整customTabBar.js脚本: CustomTabBar = functio

我在Appcelerator Tianium上开发的iOS应用程序中有一个bug需要修复

我一直在使用customTabBar()创建一个定制的tabBar,效果非常好

唯一的小问题是,它删除了在图标上设置tab并返回到根窗口的选项(就像在iOS中使用适当的本机tabBar一样)

因此,如果我在我的应用程序中向下钻取3或4个窗口,点击tab图标没有任何作用,我必须通过多次点击返回来导航到开始

下面是我正在使用的完整customTabBar.js脚本:

CustomTabBar = function(settings) {
var tabBarItems = [];
var tabCurrent = 2;

var resetTabs = function() {
    for(var i = 0; i < tabBarItems.length; i++) {
        // Clear all the images to make sure only
        // one is shown as selected
        tabBarItems[i].image = tabBarItems[i].backgroundImage;
    }
};

var assignClick = function(tabItem) {
    tabItem.addEventListener('click', function(e) {
        // Just fetching the 'i' variable from the loop
        var pos = e.source.pos;

        if (tabCurrent == pos) {
            // TODO
            // Change back to root window, like the native tab action.

            // code must go in here



            return false;
        }       

        // Switch to the tab associated with the image pressed
        settings.tabBar.tabs[pos].active = true;
        tabCurrent = pos;


        // Reset all the tab images
        resetTabs();

        // Set the current tab as selected
        tabBarItems[pos].image = settings.imagePath + settings.items[pos].selected;     
    });
};

// Create the container for our tab items
var customTabBar = Ti.UI.createWindow({
    height: 48,
    backgroundImage:'images/tabbarbackground.png',
    bottom: 0
});


for(var i = 0; i < settings.items.length; i++) {
    // Go through each item and create an imageView
    tabBarItems[i] = Titanium.UI.createImageView({
        // background is the default image
        backgroundImage: settings.imagePath + settings.items[i].image,

        width: settings.width,
        height: settings.height,
        left: settings.width * i
    });

    // Pass the item number (used later for changing tabs)
    tabBarItems[i].pos = i;
    assignClick(tabBarItems[i]);

    // Add to the container window
    customTabBar.add(tabBarItems[i]);
}

// Display the container and it's items
customTabBar.open();

// Set the first item as current :)
resetTabs();
//tabBarItems[0].image = settings.imagePath + settings.items[0].selected;
tabBarItems[2].image = settings.imagePath + settings.items[2].selected;

return {
    hide: function() { customTabBar.hide(); },
    show: function() { customTabBar.show(); }
};
};

customTabBar在现有选项卡栏上放置一个窗口(实际上,只是一个视图)。然后它处理通过的点击。但您必须处理单击事件以在选项卡之间切换,并且如您所述,跟踪堆栈上的所有窗口

但是你知道吗?你工作太辛苦了。平台已经为您完成了所有这些

通过传递单击事件(通过禁用覆盖上的触摸),基础选项卡组将发挥其自身的魔力。然后,您只需使用选项卡组的焦点事件更新UI(evt.index是焦点选项卡,evt.previousIndex是模糊的)

app.js:

Ti.include('overrideTabs.js');

/*
 This is a typical new project -- a tab group with three tabs.
 */

var tabGroup = Ti.UI.createTabGroup();

/*
 Tab 1.
 */
var win1 = Ti.UI.createWindow({ title: 'Tab 1', backgroundColor: '#fff' });
var tab1 = Ti.UI.createTab({
    backgroundImage: 'appicon.png',
    window: win1
});
var button1 = Ti.UI.createButton({
    title: 'Open Sub Window',
    width: 200, height: 40
});
button1.addEventListener('click', function (evt) {
    tab1.open(Ti.UI.createWindow({ title: 'Tab 1 Sub Window', backgroundColor: '#fff' }));
});
win1.add(button1);
tabGroup.addTab(tab1);

/*
 Tab 2.
 */
tabGroup.addTab(Ti.UI.createTab({
    backgroundImage: 'appicon.jpg',
    window: Ti.UI.createWindow({ title: 'Tab 2', backgroundColor: '#fff' })
}));

/*
 Tab 3.
 */
tabGroup.addTab(Ti.UI.createTab({
    backgroundImage: 'appicon.png',
    window: Ti.UI.createWindow({ title: 'Tab 3', backgroundColor: '#fff' })
}));

/*
 Now call the overrideTabs function, and we're done!
 */
overrideTabs(
    tabGroup, // The tab group
    { backgroundColor: '#f00' }, // View parameters for the background
    { backgroundColor: '#999', color: '#000', style: 0 }, // View parameters for selected tabs 
    { backgroundColor: '#333', color: '#888', style: 0 } // View parameters for deselected tabs
);

tabGroup.open();
    /**
 * Override a tab group's tab bar on iOS.
 *
 * NOTE: Call this function on a tabGroup AFTER you have added all of your tabs to it! We'll look at the tabs that exist
 * to generate the overriding tab bar view. If your tabs change, call this function again and we'll update the display.
 *
 * @param tabGroup The tab group to override
 * @param backgroundOptions The options for the background view; use properties like backgroundColor, or backgroundImage.
 * @param selectedOptions The options for a selected tab button.
 * @param deselectedOptions The options for a deselected tab button.
 */
function overrideTabs(tabGroup, backgroundOptions, selectedOptions, deselectedOptions) {
    // a bunch of our options need to default to 0 for everything to position correctly; we'll do it en mass:
    deselectedOptions.top = deselectedOptions.bottom
        = selectedOptions.top = selectedOptions.bottom
        = backgroundOptions.left = backgroundOptions.right = backgroundOptions.bottom = 0;

    // create the overriding tab bar using the passed in background options
    backgroundOptions.height = 50;
    var background = Ti.UI.createView(backgroundOptions);

    // pass all touch events through to the tabs beneath our background
    background.touchEnabled = false;

    // create our individual tab buttons
    var increment = 100 / tabGroup.tabs.length;
    deselectedOptions.width = selectedOptions.width = increment + '%';
    for (var i = 0, l = tabGroup.tabs.length; i < l; i++) {
        var tab = tabGroup.tabs[i];

        // position our views over the tab.
        selectedOptions.left = deselectedOptions.left = increment * i + '%';

        // customize the selected and deselected based on properties in the tab.
        selectedOptions.title = deselectedOptions.title = tab.title;
        if (tab.backgroundImage) {
            selectedOptions.backgroundImage = deselectedOptions.backgroundImage = tab.backgroundImage;
        }
        if (tab.selectedBackgroundImage) {
            selectedOptions.backgroundImage = tab.selectedBackgroundImage;
        }
        if (tab.deselectedBackgroundImage) {
            deselectedOptions.backgroundImage = tab.deselectedBackgroundImage;
        }
        selectedOptions.visible = false;
        background.add(tab.deselected = Ti.UI.createButton(deselectedOptions));
        background.add(tab.selected = Ti.UI.createButton(selectedOptions));


    }

    // update the tab group, removing any old overrides
    if (tabGroup.overrideTabs) {
        tabGroup.remove(tabGroup.overrideTabs);
    }
    else {
        tabGroup.addEventListener('focus', overrideFocusTab);
    }

    tabGroup.add(background);
    tabGroup.overrideTabs = background;
}

function overrideFocusTab(evt) {
    if (evt.previousIndex >= 0) {
        evt.source.tabs[evt.previousIndex].selected.visible = false;
    }
    evt.tab.selected.visible = true;
}
覆盖tabs.js:

Ti.include('overrideTabs.js');

/*
 This is a typical new project -- a tab group with three tabs.
 */

var tabGroup = Ti.UI.createTabGroup();

/*
 Tab 1.
 */
var win1 = Ti.UI.createWindow({ title: 'Tab 1', backgroundColor: '#fff' });
var tab1 = Ti.UI.createTab({
    backgroundImage: 'appicon.png',
    window: win1
});
var button1 = Ti.UI.createButton({
    title: 'Open Sub Window',
    width: 200, height: 40
});
button1.addEventListener('click', function (evt) {
    tab1.open(Ti.UI.createWindow({ title: 'Tab 1 Sub Window', backgroundColor: '#fff' }));
});
win1.add(button1);
tabGroup.addTab(tab1);

/*
 Tab 2.
 */
tabGroup.addTab(Ti.UI.createTab({
    backgroundImage: 'appicon.jpg',
    window: Ti.UI.createWindow({ title: 'Tab 2', backgroundColor: '#fff' })
}));

/*
 Tab 3.
 */
tabGroup.addTab(Ti.UI.createTab({
    backgroundImage: 'appicon.png',
    window: Ti.UI.createWindow({ title: 'Tab 3', backgroundColor: '#fff' })
}));

/*
 Now call the overrideTabs function, and we're done!
 */
overrideTabs(
    tabGroup, // The tab group
    { backgroundColor: '#f00' }, // View parameters for the background
    { backgroundColor: '#999', color: '#000', style: 0 }, // View parameters for selected tabs 
    { backgroundColor: '#333', color: '#888', style: 0 } // View parameters for deselected tabs
);

tabGroup.open();
    /**
 * Override a tab group's tab bar on iOS.
 *
 * NOTE: Call this function on a tabGroup AFTER you have added all of your tabs to it! We'll look at the tabs that exist
 * to generate the overriding tab bar view. If your tabs change, call this function again and we'll update the display.
 *
 * @param tabGroup The tab group to override
 * @param backgroundOptions The options for the background view; use properties like backgroundColor, or backgroundImage.
 * @param selectedOptions The options for a selected tab button.
 * @param deselectedOptions The options for a deselected tab button.
 */
function overrideTabs(tabGroup, backgroundOptions, selectedOptions, deselectedOptions) {
    // a bunch of our options need to default to 0 for everything to position correctly; we'll do it en mass:
    deselectedOptions.top = deselectedOptions.bottom
        = selectedOptions.top = selectedOptions.bottom
        = backgroundOptions.left = backgroundOptions.right = backgroundOptions.bottom = 0;

    // create the overriding tab bar using the passed in background options
    backgroundOptions.height = 50;
    var background = Ti.UI.createView(backgroundOptions);

    // pass all touch events through to the tabs beneath our background
    background.touchEnabled = false;

    // create our individual tab buttons
    var increment = 100 / tabGroup.tabs.length;
    deselectedOptions.width = selectedOptions.width = increment + '%';
    for (var i = 0, l = tabGroup.tabs.length; i < l; i++) {
        var tab = tabGroup.tabs[i];

        // position our views over the tab.
        selectedOptions.left = deselectedOptions.left = increment * i + '%';

        // customize the selected and deselected based on properties in the tab.
        selectedOptions.title = deselectedOptions.title = tab.title;
        if (tab.backgroundImage) {
            selectedOptions.backgroundImage = deselectedOptions.backgroundImage = tab.backgroundImage;
        }
        if (tab.selectedBackgroundImage) {
            selectedOptions.backgroundImage = tab.selectedBackgroundImage;
        }
        if (tab.deselectedBackgroundImage) {
            deselectedOptions.backgroundImage = tab.deselectedBackgroundImage;
        }
        selectedOptions.visible = false;
        background.add(tab.deselected = Ti.UI.createButton(deselectedOptions));
        background.add(tab.selected = Ti.UI.createButton(selectedOptions));


    }

    // update the tab group, removing any old overrides
    if (tabGroup.overrideTabs) {
        tabGroup.remove(tabGroup.overrideTabs);
    }
    else {
        tabGroup.addEventListener('focus', overrideFocusTab);
    }

    tabGroup.add(background);
    tabGroup.overrideTabs = background;
}

function overrideFocusTab(evt) {
    if (evt.previousIndex >= 0) {
        evt.source.tabs[evt.previousIndex].selected.visible = false;
    }
    evt.tab.selected.visible = true;
}
/**
*在iOS上覆盖选项卡组的选项卡栏。
*
*注意:将所有选项卡添加到选项卡组后,在该选项卡组上调用此函数!我们将查看现有的选项卡
*以生成替代选项卡栏视图。如果选项卡更改,请再次调用此函数,我们将更新显示。
*
*@param tabGroup要覆盖的选项卡组
*@param backgroundOptions背景视图的选项;使用backgroundColor或backgroundImage等属性。
*@param selected选项选定选项卡按钮的选项。
*@param取消选择取消选择选项卡按钮的选项。
*/
函数覆盖选项卡(选项卡组、背景选项、已选选项、取消选择选项){
//我们的一系列选项需要默认为0,才能正确定位所有内容;我们将大量执行:
deselectoptions.top=deselectoptions.bottom
=selectedOptions.top=selectedOptions.bottom
=backgroundOptions.left=backgroundOptions.right=backgroundOptions.bottom=0;
//使用传入的后台选项创建覆盖选项卡栏
backgroundOptions.height=50;
var background=Ti.UI.createView(backgroundOptions);
//将所有触摸事件传递到我们背景下的选项卡
background.touchEnabled=false;
//创建单独的选项卡按钮
var增量=100/tabGroup.tabs.length;
取消选择选项.width=selectedOptions.width=increment+'%';
对于(var i=0,l=tabGroup.tabs.length;i=0){
evt.source.tabs[evt.previousIndex].selected.visible=false;
}
evt.tab.selected.visible=true;
}

customTabBar在现有选项卡栏上放置一个窗口(实际上,只是一个视图)。然后它处理通过的点击。但您必须处理单击事件以在选项卡之间切换,并且如您所述,跟踪堆栈上的所有窗口

但是你知道吗?你工作太辛苦了。平台已经为您完成了所有这些

通过传递单击事件(通过禁用覆盖上的触摸),基础选项卡组将发挥其自身的魔力。然后,您只需使用选项卡组的焦点事件更新UI(evt.index是焦点选项卡,evt.previousIndex是模糊的)

app.js:

Ti.include('overrideTabs.js');

/*
 This is a typical new project -- a tab group with three tabs.
 */

var tabGroup = Ti.UI.createTabGroup();

/*
 Tab 1.
 */
var win1 = Ti.UI.createWindow({ title: 'Tab 1', backgroundColor: '#fff' });
var tab1 = Ti.UI.createTab({
    backgroundImage: 'appicon.png',
    window: win1
});
var button1 = Ti.UI.createButton({
    title: 'Open Sub Window',
    width: 200, height: 40
});
button1.addEventListener('click', function (evt) {
    tab1.open(Ti.UI.createWindow({ title: 'Tab 1 Sub Window', backgroundColor: '#fff' }));
});
win1.add(button1);
tabGroup.addTab(tab1);

/*
 Tab 2.
 */
tabGroup.addTab(Ti.UI.createTab({
    backgroundImage: 'appicon.jpg',
    window: Ti.UI.createWindow({ title: 'Tab 2', backgroundColor: '#fff' })
}));

/*
 Tab 3.
 */
tabGroup.addTab(Ti.UI.createTab({
    backgroundImage: 'appicon.png',
    window: Ti.UI.createWindow({ title: 'Tab 3', backgroundColor: '#fff' })
}));

/*
 Now call the overrideTabs function, and we're done!
 */
overrideTabs(
    tabGroup, // The tab group
    { backgroundColor: '#f00' }, // View parameters for the background
    { backgroundColor: '#999', color: '#000', style: 0 }, // View parameters for selected tabs 
    { backgroundColor: '#333', color: '#888', style: 0 } // View parameters for deselected tabs
);

tabGroup.open();
    /**
 * Override a tab group's tab bar on iOS.
 *
 * NOTE: Call this function on a tabGroup AFTER you have added all of your tabs to it! We'll look at the tabs that exist
 * to generate the overriding tab bar view. If your tabs change, call this function again and we'll update the display.
 *
 * @param tabGroup The tab group to override
 * @param backgroundOptions The options for the background view; use properties like backgroundColor, or backgroundImage.
 * @param selectedOptions The options for a selected tab button.
 * @param deselectedOptions The options for a deselected tab button.
 */
function overrideTabs(tabGroup, backgroundOptions, selectedOptions, deselectedOptions) {
    // a bunch of our options need to default to 0 for everything to position correctly; we'll do it en mass:
    deselectedOptions.top = deselectedOptions.bottom
        = selectedOptions.top = selectedOptions.bottom
        = backgroundOptions.left = backgroundOptions.right = backgroundOptions.bottom = 0;

    // create the overriding tab bar using the passed in background options
    backgroundOptions.height = 50;
    var background = Ti.UI.createView(backgroundOptions);

    // pass all touch events through to the tabs beneath our background
    background.touchEnabled = false;

    // create our individual tab buttons
    var increment = 100 / tabGroup.tabs.length;
    deselectedOptions.width = selectedOptions.width = increment + '%';
    for (var i = 0, l = tabGroup.tabs.length; i < l; i++) {
        var tab = tabGroup.tabs[i];

        // position our views over the tab.
        selectedOptions.left = deselectedOptions.left = increment * i + '%';

        // customize the selected and deselected based on properties in the tab.
        selectedOptions.title = deselectedOptions.title = tab.title;
        if (tab.backgroundImage) {
            selectedOptions.backgroundImage = deselectedOptions.backgroundImage = tab.backgroundImage;
        }
        if (tab.selectedBackgroundImage) {
            selectedOptions.backgroundImage = tab.selectedBackgroundImage;
        }
        if (tab.deselectedBackgroundImage) {
            deselectedOptions.backgroundImage = tab.deselectedBackgroundImage;
        }
        selectedOptions.visible = false;
        background.add(tab.deselected = Ti.UI.createButton(deselectedOptions));
        background.add(tab.selected = Ti.UI.createButton(selectedOptions));


    }

    // update the tab group, removing any old overrides
    if (tabGroup.overrideTabs) {
        tabGroup.remove(tabGroup.overrideTabs);
    }
    else {
        tabGroup.addEventListener('focus', overrideFocusTab);
    }

    tabGroup.add(background);
    tabGroup.overrideTabs = background;
}

function overrideFocusTab(evt) {
    if (evt.previousIndex >= 0) {
        evt.source.tabs[evt.previousIndex].selected.visible = false;
    }
    evt.tab.selected.visible = true;
}
覆盖tabs.js:

Ti.include('overrideTabs.js');

/*
 This is a typical new project -- a tab group with three tabs.
 */

var tabGroup = Ti.UI.createTabGroup();

/*
 Tab 1.
 */
var win1 = Ti.UI.createWindow({ title: 'Tab 1', backgroundColor: '#fff' });
var tab1 = Ti.UI.createTab({
    backgroundImage: 'appicon.png',
    window: win1
});
var button1 = Ti.UI.createButton({
    title: 'Open Sub Window',
    width: 200, height: 40
});
button1.addEventListener('click', function (evt) {
    tab1.open(Ti.UI.createWindow({ title: 'Tab 1 Sub Window', backgroundColor: '#fff' }));
});
win1.add(button1);
tabGroup.addTab(tab1);

/*
 Tab 2.
 */
tabGroup.addTab(Ti.UI.createTab({
    backgroundImage: 'appicon.jpg',
    window: Ti.UI.createWindow({ title: 'Tab 2', backgroundColor: '#fff' })
}));

/*
 Tab 3.
 */
tabGroup.addTab(Ti.UI.createTab({
    backgroundImage: 'appicon.png',
    window: Ti.UI.createWindow({ title: 'Tab 3', backgroundColor: '#fff' })
}));

/*
 Now call the overrideTabs function, and we're done!
 */
overrideTabs(
    tabGroup, // The tab group
    { backgroundColor: '#f00' }, // View parameters for the background
    { backgroundColor: '#999', color: '#000', style: 0 }, // View parameters for selected tabs 
    { backgroundColor: '#333', color: '#888', style: 0 } // View parameters for deselected tabs
);

tabGroup.open();
    /**
 * Override a tab group's tab bar on iOS.
 *
 * NOTE: Call this function on a tabGroup AFTER you have added all of your tabs to it! We'll look at the tabs that exist
 * to generate the overriding tab bar view. If your tabs change, call this function again and we'll update the display.
 *
 * @param tabGroup The tab group to override
 * @param backgroundOptions The options for the background view; use properties like backgroundColor, or backgroundImage.
 * @param selectedOptions The options for a selected tab button.
 * @param deselectedOptions The options for a deselected tab button.
 */
function overrideTabs(tabGroup, backgroundOptions, selectedOptions, deselectedOptions) {
    // a bunch of our options need to default to 0 for everything to position correctly; we'll do it en mass:
    deselectedOptions.top = deselectedOptions.bottom
        = selectedOptions.top = selectedOptions.bottom
        = backgroundOptions.left = backgroundOptions.right = backgroundOptions.bottom = 0;

    // create the overriding tab bar using the passed in background options
    backgroundOptions.height = 50;
    var background = Ti.UI.createView(backgroundOptions);

    // pass all touch events through to the tabs beneath our background
    background.touchEnabled = false;

    // create our individual tab buttons
    var increment = 100 / tabGroup.tabs.length;
    deselectedOptions.width = selectedOptions.width = increment + '%';
    for (var i = 0, l = tabGroup.tabs.length; i < l; i++) {
        var tab = tabGroup.tabs[i];

        // position our views over the tab.
        selectedOptions.left = deselectedOptions.left = increment * i + '%';

        // customize the selected and deselected based on properties in the tab.
        selectedOptions.title = deselectedOptions.title = tab.title;
        if (tab.backgroundImage) {
            selectedOptions.backgroundImage = deselectedOptions.backgroundImage = tab.backgroundImage;
        }
        if (tab.selectedBackgroundImage) {
            selectedOptions.backgroundImage = tab.selectedBackgroundImage;
        }
        if (tab.deselectedBackgroundImage) {
            deselectedOptions.backgroundImage = tab.deselectedBackgroundImage;
        }
        selectedOptions.visible = false;
        background.add(tab.deselected = Ti.UI.createButton(deselectedOptions));
        background.add(tab.selected = Ti.UI.createButton(selectedOptions));


    }

    // update the tab group, removing any old overrides
    if (tabGroup.overrideTabs) {
        tabGroup.remove(tabGroup.overrideTabs);
    }
    else {
        tabGroup.addEventListener('focus', overrideFocusTab);
    }

    tabGroup.add(background);
    tabGroup.overrideTabs = background;
}

function overrideFocusTab(evt) {
    if (evt.previousIndex >= 0) {
        evt.source.tabs[evt.previousIndex].selected.visible = false;
    }
    evt.tab.selected.visible = true;
}
/**
*在iOS上覆盖选项卡组的选项卡栏。
*
*注意:将所有选项卡添加到选项卡组后,在该选项卡组上调用此函数!我们将查看现有的选项卡
*以生成替代选项卡栏视图。如果选项卡更改,请再次调用此函数,我们将更新显示。
*
*@param tabGroup要覆盖的选项卡组
*@param backgroundOptions背景视图的选项;使用backgroundColor或backgroundImage等属性。
*@param selected选项选定选项卡按钮的选项。
*@param取消选择取消选择选项卡按钮的选项。
*/
函数覆盖选项卡(选项卡组、背景选项、已选选项、取消选择选项){
//我们的一系列选项需要默认为0,才能正确定位所有内容;我们将大量执行:
deselectoptions.top=deselectoptions.bottom
=selectedOptions.top=selectedOptions.bottom
=backgroundOptions.left=backgroundOptions.right=backgroundOptions.bottom=0;
//使用传入的后台选项创建覆盖选项卡栏
文学士