Android TabWidget White Space Issue

Pracuję nad TabWidget i otrzymuję spację między TabActivity i Tabs.

Nie wiem, jak usunąć tę białą przestrzeń proszę, czy ktoś może mi pomóc, jak ją usunąć, moja karta tab_main.xml wygląda następująco:

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

Próbowałem umieścić kolor tła TabWidget na android: color: przezroczysty, ale wciąż ta sama biała przestrzeń jest pomiędzy działaniem a zakładką.

Nie chcę żadnej przestrzeni separacji między moim działaniem a kartami (czy można to zrobić?)

Czy ktoś może mi zasugerować, jak pozbyć się tej białej przestrzeni.

questionAnswers(3)

yourAnswerToTheQuestion