Android中标签之间的空间

Android中标签之间的空间,android,tabs,Android,Tabs,我的标签之间有空格。我查看了StackOverflow上所有可能的解决方案,并添加了它们,但它们之间仍然存在空间 我的选项卡代码: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="0dp" android:layout_weight="1

我的标签之间有空格。我查看了StackOverflow上所有可能的解决方案,并添加了它们,但它们之间仍然存在空间

我的选项卡代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="0dp"
    android:layout_weight="1"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:padding="0dp"
    >

    <ImageView
        android:id="@+id/tab_image"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        />

</LinearLayout>

但它仍然显示选项卡之间的空间。我遗漏了什么吗?

我没有机会从android IDE检查这些。但我想这是可行的

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
 android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<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="fill_parent">

    <FrameLayout
        android:id="@+id/tab5"
        android:layout_width="0dp"
        android:layout_height="fill_parent"
        android:layout_weight="20.0" />

    <FrameLayout
        android:id="@+id/tab4"
        android:layout_width="0dp"
        android:layout_height="fill_parent"
        android:layout_weight="20.0" />

    <FrameLayout
        android:id="@+id/tab3"
        android:layout_width="0dp"
        android:layout_height="fill_parent"
        android:layout_weight="20.0" />

    <FrameLayout
        android:id="@+id/tab2"
        android:layout_width="0dp"
        android:layout_height="fill_parent"
        android:layout_weight="20.0" />

    <FrameLayout
        android:id="@+id/tab1"
        android:layout_width="0dp"
        android:layout_height="fill_parent"
        android:layout_weight="20.0" />
</FrameLayout>

<TabWidget
    android:id="@android:id/tabs"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom"
    android:layout_weight="0"
    android:background="@drawable/bottom_image"
    android:dividerPadding="0dp"
    android:fitsSystemWindows="true"
    android:gravity="fill"
    android:showDividers="none"
    android:tabStripEnabled="false"
    android:visibility="visible" >
</TabWidget>

在这里,我给出了一个权重总和=100.0,并将其等分给所有的孩子。

如果我没有在tabcontent-FrameLayout中添加android:layout\u-weight=20,它不会显示选项卡。
mTabHost.getTabWidget().setStripEnabled(false);
mTabHost.getTabWidget().setDividerDrawable(null);
if (Integer.parseInt(Build.VERSION.SDK) >= Build.VERSION_CODES.HONEYCOMB) {
    mTabHost.getTabWidget().setShowDividers(LinearLayout.SHOW_DIVIDER_NONE);
}
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
 android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<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="fill_parent">

    <FrameLayout
        android:id="@+id/tab5"
        android:layout_width="0dp"
        android:layout_height="fill_parent"
        android:layout_weight="20.0" />

    <FrameLayout
        android:id="@+id/tab4"
        android:layout_width="0dp"
        android:layout_height="fill_parent"
        android:layout_weight="20.0" />

    <FrameLayout
        android:id="@+id/tab3"
        android:layout_width="0dp"
        android:layout_height="fill_parent"
        android:layout_weight="20.0" />

    <FrameLayout
        android:id="@+id/tab2"
        android:layout_width="0dp"
        android:layout_height="fill_parent"
        android:layout_weight="20.0" />

    <FrameLayout
        android:id="@+id/tab1"
        android:layout_width="0dp"
        android:layout_height="fill_parent"
        android:layout_weight="20.0" />
</FrameLayout>

<TabWidget
    android:id="@android:id/tabs"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom"
    android:layout_weight="0"
    android:background="@drawable/bottom_image"
    android:dividerPadding="0dp"
    android:fitsSystemWindows="true"
    android:gravity="fill"
    android:showDividers="none"
    android:tabStripEnabled="false"
    android:visibility="visible" >
</TabWidget>