Titanium.UI.TabGroup style settings ignored on both iOS and Android

You must Login before you can answer or comment on any questions.

I don't know whether I've just missed something in the docs somewhere, but I can't get any Titanium.UI.TabGroup styling to work on either iOS or Android 2.2

I'm using the following code:

var self = Ti.UI.createTabGroup({
        tabHeight: 40,
        activeTabBackgroundColor: '#F47B21',
        tabsBackgroundColor: '#3C0F62'
    });
Neither the height, nor the colours appear in either device. I've also tried applying colours to the Tabs themselves. This too is ignored on both devices.

Have I missed something, or does this stuff just not work?

1 Answer

Accepted Answer

The properties that you are trying to set only work for mobileweb. When you are viewing the docs, be sure to check the supported platforms for each property.

Your Answer

Think you can help? Login to answer this question!