Hey can we hide/show tab layout on button click which will be placed below the tab widget it self.

Eg :

enter image description here

When i try to hide - setVisible(View.GONE) the tabwidget whole screens goes black.

link|improve this question

79% accept rate
feedback

1 Answer

up vote 1 down vote accepted

The most straightforward way to me would just use the android menu as the way to choose between different tabs instead of a real tab view. When the user clicks on a menu button, you load another activity and the menu gets hidden again.

The tabhost is meant to stay there throughout the entire app lifecycle. Using it like this would be wrong. A way to achieve this using the tab would be to set it completely invisible and then load the activity that normally is in the tab on the whole screen.

link|improve this answer
I tried making it using slideing widget with flags set to no_animation and no_history but my application is based on web services and xml parsing so on every click(buttons) whole activity is being called again and whole parsing is done. So i preferred tab widget since activity state is maintained. – ZealDeveloper Jan 9 at 11:48
feedback

Your Answer

 
or
required, but never shown

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