Android TabWidget problema de espacio en blanco

Estoy trabajando en el TabWidget y obtengo un espacio en blanco entre el TabActivity y las pestañas.

No sé cómo eliminar este espacio en blanco, por favor, ¿alguien me puede ayudar? ¿Cómo debería eliminarlo? Mi tab_main.xml es el siguiente:

<?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>

Intenté poner el color de fondo de TabWidget en android: color: transparente pero el mismo espacio en blanco se interpone entre la Actividad y la Ficha.

No quiero ningún espacio de separación entre mi Actividad y las Pestañas (¿Es posible hacerlo?)

Por favor, ¿alguien puede sugerirme cómo deshacerme de este espacio en blanco?

Respuestas a la pregunta(3)

Su respuesta a la pregunta