更改 TabHost/TabWidget 的颜色

Changing color of TabHost/TabWidget

我很难更改 TabWidget 的颜色。我查看了几篇文章并进行了尝试,但其中 none 对我有用。我正在尝试将默认(蓝色)颜色场景更改为绿色。

Image of my app

我的xml代码:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity"
android:id="@+id/relativeLayout">

<TabHost
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:id="@+id/tabHost"
    android:layout_alignParentTop="true"

    android:layout_alignParentStart="true">

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical"
        >

        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:clickable="true"
            android:tabStripEnabled="false">

        </TabWidget>

        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent">

            <LinearLayout
                android:id="@+id/tab1"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:orientation="vertical">

            </LinearLayout>

            <LinearLayout
                android:id="@+id/tab2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:orientation="vertical">
                <FrameLayout
                    android:id="@+id/listFragment"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"/>
            </LinearLayout>

            <LinearLayout
                android:id="@+id/tab3"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:orientation="vertical">
            </LinearLayout>

        </FrameLayout>
    </LinearLayout>
</TabHost>

以编程方式更改选项卡颜色的方法是使用

for(int i=0;i<mTabHost.getTabWidget().getChildCount();i++)
{
    mTabHost.getTabWidget().getChildAt(i)
                           .setBackgroundColor(Color.parseColor("#00304E"));
}

要更改当前所选标签的颜色,

mTabHost.getTabWidget().getChildAt(mTabHost.getCurrentTab())
                       .setBackgroundColor(Color.parseColor("#008EE8"));