我工作的TabWidget和我正在TabActivity和标签之间的空白。
我不知道如何删除这个空格请任何一个可以帮助我,我应该如何删除它,我tab_main.xml如下:
<?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>
我试图把TabWidget的背景颜色到Android:颜色:透明,但仍然相同的白色空间来活动和标签之间。
我不希望我的活动和标签之间的任何分离空间(是否有可能做到这一点?)
请任何一个可以建议我如何摆脱这一空白的。