I need to create a specific shape for the Tab. It should look like this

enter image description here

Is is possible to create it via shape? Or just to use it as an image?

I also saw that some people use this way when they have to create very specialized tabs: they simply create all variants of all tabs in photoshop, selected and unselected, (for example,tab1_selected, tab1_unselected,...), but they do not create images for each tab, but literary they create the whole TabWidget image (for example, image with tab1 selected, and other tabs unselected) and then they load the appropriate image when certain tab is selected.

  • Is this the right way to do it? This way you can create really cool tabs with thick bottom dividers, etc.
  • How should I load the whole TabWidget background in this way? The usual way via background attribute or some other way?
link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Use the following code and the MyClass in code is the ClassName in which the code is written:

tabHost.setOnTabChangedListener(new OnTabChangeListener() {
        @Override
        public void onTabChanged(String tabId) {
            MyClass.setTabColor(tabHost);
        }
    });

public static void setTabColor(TabHost tabhost) {
    for(int i=0;i<tabhost.getTabWidget().getChildCount();i++) {
        tabhost.getTabWidget().getChildAt(i).setBackgroundResource(R.drawable.tab_bg); //unselected
    }
    tabhost.getTabWidget().getChildAt(tabhost.getCurrentTab()).setBackgroundResource(R.drawable.tab_bg_selected); // selected
}
link|improve this answer
Any ideas on the first part of question - creating the specific shape? – sandalone Jun 23 '11 at 15:02
1  
Just make the image as you required and the background but transparency will not work. – Neeraj Nama Jun 23 '11 at 15:12
Thanks for the info, although the transparency can be cheated if I set the color the same as TabWidget bg color. :) – sandalone Jun 23 '11 at 15:49
Welcome, can you do me a favor? mark the answer as accepted if it is right for you. – Neeraj Nama Jun 23 '11 at 16:03
feedback

Your Answer

 
or
required, but never shown

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