Problema de espaço em branco do Android TabWidget

Eu estou trabalhando no TabWidget e estou recebendo um espaço em branco entre o TabActivity e as guias.

Eu não sei como remover este espaço em branco por favor, qualquer um pode me ajudar como devo removê-lo, meu tab_main.xml é a seguinte:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<TabHost
    android:id="@android:id/tabhost"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

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

        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="0dip"
            android:layout_weight="1" />

        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_weight="0" />
    </LinearLayout>
</TabHost>

Eu tentei colocar cor de fundo de TabWidget para android: cor: transparente, mas ainda o mesmo espaço em branco vem entre a atividade e a aba.

Eu não quero nenhum espaço de separação entre minha atividade e as abas (é possível fazer isso?)

Por favor, qualquer um pode me sugerir como se livrar deste espaço em branco.

questionAnswers(3)

yourAnswerToTheQuestion