Pracuję nad TabWidget i otrzymuję biały odstęp między TabActivity i Tabs.Android TabWidget White Space Issue
nie wiem jak usunąć tę białą przestrzeń proszę może ktoś mi pomóc jak mam ją usunąć, mój tab_main.xml jest następujący:
<?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 dodaj kolor tła TabWidget do androida: kolor: przezroczysty, ale wciąż ta sama biała przestrzeń pojawia się pomiędzy działaniem a kartą.
Nie chcę żadnego miejsca separacja pomiędzy mojej działalności i zaczepy (Czy jest możliwe aby to zrobić?)
Proszę może ktoś zasugerować mi jak pozbyć się tej białej przestrzeni.
Czy próbowałeś, aby wysokość 'TabWidget' do 0dp była podobna do układu ramki? Ponadto, jeśli celujesz w API 8 lub więcej, powinieneś użyć 'match_parent' zamiast wypełnienia. – TronicZomB