Is it possible to change the color of selected Tab in android?

前端 未结 3 459
梦毁少年i
梦毁少年i 2020-12-03 08:41

Hi i have two tabs in my tab widget,i want to apply the two different color for two tabs.am searching everywhere,mostly all colors are same while applying the tab.

<

3条回答
  •  臣服心动
    2020-12-03 09:40

    Try this:

    ...onCreate(){
    
         ...
         tabHost.setOnTabChangedListener(new OnTabChangeListener() {
    
        @Override
        public void onTabChanged(String arg0) {
    
            setTabColor(tabHost);
        }
         });
         setTabColor(tabHost);
    ...
    }
    
    //Change The Backgournd Color of Tabs
    public void setTabColor(TabHost tabhost) {
    
        for(int i=0;i

提交回复
热议问题