public static void setTabColor(TabHost tabhost) {
for(int i=0;i<tabhost.getTabWidget().getChildCount();i++)
{
tabhost.getTabWidget().getChildAt(i).setBackgroundColor(Color.BLACK); //unselected
}
tabhost.getTabWidget().getChildAt(tabhost.getCurrentTab()).setBackgroundColor(Color.BLUE); // selected
}
請告訴我在哪裏,我在做錯誤...的Android,如何更改標籤控件的默認顏色的Android
我想改變標籤按鈕的默認背景色,這裏只有一次第一個選項卡的背景顏色的變化,但這種顏色沒有改變,當我選擇其他選項卡...
請指引我,在此先感謝...
你用自定義標籤欄嘗試過嗎? – Venky 2011-06-14 14:33:58