Whats the best way to add many tabs to the tadwidget? I need to add at least 7 tabs, and I dont want them to look too tight. Is there some other component to do this?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted
  1. Add as many Tabs as you want to the tab widget
  2. Change the tabWidget's Visibility to GONE
  3. Now Implement your nice component to select a page

    • Every time this nice component changes the selection call:

      tabHost.setCurrentTab(the_page_index);
      
link|improve this answer
Nice idea. I'll try this. – efeyc Aug 26 '11 at 13:16
feedback

Your Answer

 
or
required, but never shown

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