위의 사진처럼 TabWidget의 백그라운드를 검은색으로 하고 TabContent를 회색으로 하기 위해서는 TabHost의 백그라운드를 우선 회색으로 한 후 TabWidget의 백그라운드를 검은색으로 해준다. 그럼 위와 같이 된다
<?xml version="1.0" encoding="utf-8"?>
<TabHost android:id="@android:id/tabhost" xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:background="#aaaaaa"
>
<LinearLayout android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" android:background="#000000">
</TabWidget>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
</FrameLayout>
</LinearLayout>
</TabHost>