我想删除android中选项卡之间的默认间距我该怎么做

时间:2011-07-28 06:23:50

标签: android android-layout android-tabhost

  

可能重复:
  Android remove space between tabs in tabwidget

我想删除Android中tabwidget之间的默认间距。我怎么能这样做?

以下是我的xml:

android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
  >
    <TabWidget
        android:id="@android:id/tabs"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" 
        android:layout_alignParentBottom="true"
        android:layout_margin="0dip"
        android:background="#000000"
        /> 

    <FrameLayout
        android:id="@android:id/tabcontent"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_alignParentTop="true"
        android:layout_above="@android:id/tabs"
        /> 
  </RelativeLayout>

1 个答案:

答案 0 :(得分:1)