I'm trying to make a custom tabgroup in appcelerator in which one (or two) of the tabs is bigger than the rest. I have attached an image of what I'm trying to pull off.

I am able to make a custom tabgroup, but it refreshes each time I change a tab, and I want my tabs to behave like a native tabgroup. Any help would be much appreciated

Example

link|improve this question

0% accept rate
I figured out this issue. For anyone that has this same issue in the future this should help: The tabgroup is its own view. If you want to add overlays to it, make a new view, and add it to the tabgroup, NOT to the window itself. – stealthdyno Jan 5 at 15:37
add an answer yourself to this question, and accept it as the answer to help the future people! – Topener Jan 16 at 11:29
feedback

1 Answer

As you mentioned in a comment, on iOS the tab group it itself a view. You can add views to it, and they will persist regardless of which tab is active. Because you can programmatically change the active tab, you can overlay views on top of the normal tab group and use them to decide which tab should be active.

The following Gist demonstrates this: https://gist.github.com/853935

link|improve this answer
Do you have any sample code you can post up, i'm trying to do this myself – William Smith Feb 22 at 7:17
1  
Look at the Gist in my comment. That is self sufficient. – Dawson Toth Feb 26 at 22:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.