如何更改使用片段实现的tabview底部的颜色

时间:2015-11-09 06:50:58

标签: android tabview

我想更改tabview底部的颜色(默认为蓝色,但我想将其更改为红色)。

我已经把我的应用程序的图像: this is the image

顺便说一下,我没有在我的应用程序中使用android支持

1 个答案:

答案 0 :(得分:0)

public static void setTabColor(TabHost tabhost) {
    for(int i=0;i<tabhost.getTabWidget().getChildCount();i++)

   {tabhost.getTabWidget().getChildAt(i).setBackgroundResource(R.color.white);}   tabhost.getTabWidget().getChildAt(tabhost.getCurrentTab()).setBackgroundResource(R.color.tab_selected);}