4

我正在使用 tabhost 并试图禁用选项卡边框线。我在我的 XML 中使用了这个 android:tabStripEnabled="false" 但它似乎没有工作,这条线仍然存在,我尝试了其他方式,比如在 style.xml 中进行更改(我从 stackoverflow 中找到)但是它也不起作用。任何的想法?

我的标签 xml:

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

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

        <RelativeLayout
            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"
                android:layout_above="@android:id/tabs" />

            <TabWidget
                android:id="@android:id/tabs"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_alignParentBottom="true"
                android:background="#FFFFFF"
                android:tabStripEnabled="false"
                android:layout_gravity="bottom" />
        </RelativeLayout>
    </TabHost>

</LinearLayout>
4

2 回答 2

2

您可以使用以下语句删除选项卡的底部条和选项卡之间的分隔线。

    TabHost t;
    t.getTabWidget().setStripEnabled(false);
    t.getTabWidget().setDividerDrawable(R.drawable.ic_launcher);
于 2012-08-21T04:19:41.633 回答
1

它至少需要 minSDK 8 (2.2)...查看您的清单。

确保在您的代码中没有一行设置选项卡的背景(我遇到了这个问题......);)

于 2012-10-04T12:33:21.187 回答