Community Questions & Answers

back button android and tabgroup

hi expert; I have a big problem with my android application on Titan, I would like to work with the back Button to return to the previous windows, but when the current window contains a TabGroup I have to click two times to get to privious window if not it...

get TabGroup container window

What I'm trying to do is open a window when the user clicks a button that exists in a tab. In android it works ok with `window.open()` while there is a back button on the device. On iOS, I'd like that click to spawn a `NavigationGroup` that will lead...

Replace window content

Hi, I'm developing an android application and I have to obtain this result. Because I don't like native tabgroup for android and because I'd like to have a custom title bar that show the brand of the app (that is not possible in android) I thought to...

show tabs at bottom on android for sdk 3+

i have seen many examples to make the tabs at bottom for android but that all does not work after sdk 3 is there any way i can make the tabs at bottom for android for sdk 3+ i want to do that to make my apps look same across both platforms

Getting the index of the current tab

Hello all, As far as I read, the `getCurrentTab()` function of the TabGroup Object returns a Tab Object representing the current tab. I'd live to ask if there is a way to get the index instead of the actual current tab?

How can i hide the TabGroup after window creation?

Hi, i want to hide the tabGroup on certain events (in this case on based on the orientation). The Api docs says there is a hide() method, but i don't know how to get the reference to the TabGroup. It is created in the app.js. Any Ideas? Thanks..

Android Tabgroup at bottom Titanium 3.x

I was trying to put Android Tab Bar at the bottom. I tried steps listed [here](http://developer.appcelerator.com/question/130731/howto-move-the-android-tabbar-to-the-bottom) It worked in Titanium 2.1, but not working in Titanium 3.x onwards. Is there...

Login and Tabgroup

Hi , I want to have an app to login first (in fullscreen), after login, it goes to tabview.. I know I should declare the tabgroup inside app.js first, but after load the full screen login, it can never go back to the tabgroup view. may I know what...

Facebook-style slide out menu AND tab group

I found a quick tutorial on adding a Facebook-like slide out menu to an app ([Tutsplus](http://mobile.tutsplus.com/tutorials/appcelerator/titanium-mobile-create-a-sliding-menu-for-ios/)) which works great but uses a navgroup. However, I need to have a tab...

tabGroup always visible

Hello, i have a tabGroup with a tableView. when i click on a cell a new window opens and the tabGroup disappears. i want the tabgroup to be visible everywhere. so far this my code: Home.js ~~~ // Create a TableView. var currentWindow =...

tab bar at bottom in android

Hi, I am trying to place tab bar at bottom for android but I am unable to do that. I have tried with titanium SDK 2.1.4 and SDK 3.0.2 both but nothing worked for me. I have also created titanium_tabgroup.xml file inside platform/android/res/layout...

Close TabGroup iPhone / SDK 3.0

Hi. Im trying to close a Titanium.UI.TabGroup with tabgroup.close(). The tabgroup closes, but it doesnt seem that it is released from memory. When trying to rebuild the tabgroup, it seems like it keeps all the windows from the previous tabgroup aswell,...

Open TabGroup from button

Hi, I'm developing an Android app. How can i open a tabgroup from button click ? I use this code: ~~~ btn_open.addEventListener('click', function(){ new ApplicationTabGroup(Win1, Win2).open(); }); ~~~ but when I press back button my application...

Android Tabgroup Back Button

I have a window ~~~ var dash = Ti.UI.createWindow({ backgroundColor : $$.css.dashboard.win.backgroundColor, navBarHidden : true, fullscreen: false, zIndex : 1000000, layout : "vertical" }); ~~~ This window opens a...

unable to customize tabGroup

plz anyone help me to customize tabgroup so i can change the background and the look of the buttons(tabs)with my won graphics thank you

Tabgroup Holo Theme

Im using Ti. 3 and with the xml down here I can change the tabs into Holo theme. Is it possible to adjust the width of the tabs so it wont get a swipe one if 5 tabs? The same comes to font and the blueish selected color, are they editable? ~~~ <android...

Custom tabgroup

I'm trying to create a custom tabgroup. I want to have two of the tabs have a higher height than the other three tabs (this is for iOS). When I manually set the height of the tabs, it doesn't change anything. Is this possible with tabgroups? If not,...

how to create custom tab bar

Hi, I want to create a custom tab bar, with custom images (normal and selected), and other way to open the windows asociated to this tabs. For example... I have 4 tabs: Tab1, Tab2, Tab3, Tab4 For example, if I open the Tab2... this tab open with...

Custom tabgroup

Hi all, Any idea about how to create a custom tabgroup. IN my app i have 5 tabs in bottom and 2 tabs in top, and when click on one tab, the tab window has to open and the tab icon color need to change suggestions plz................

iOS vs Android Window Close

Hi, In iOS i tried to close a window with `win.close();` and it never worked (it just made everything back but did not go back also) so instead, I use : ~~~ Titanium.API.currentTabGroup.getActiveTab().close(win,{animated:true});| ~~~ currentTabGroup is...

Showing 1-50 of 818 1 2 3 4 5 617