android:tabStripEnabled =“false”不起作用

时间:2013-07-26 15:20:38

标签: android android-layout android-tabhost

我遇到了 TabWidget 布局的问题。

如何将标签与内容结合起来,因为它始终显示此渐弱边缘:

enter image description here

图形非常完美。我设置了android:tabStripEnabled="false"但仍然向我显示了标签和框架布局之间的分隔线。

这是XML代码

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
     android:orientation="vertical" 
    android:layout_height="match_parent"
    android:background="@drawable/background"
    tools:context=".MainActivity" >

    <include layout="@layout/action_bar" />

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

            <TabWidget
                android:id="@android:id/tabs"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:tabStripEnabled="false"
                android:divider="@null"
                android:showDividers="none" />

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="1" >

                <FrameLayout
                    android:id="@android:id/tabcontent"
                    android:layout_width="0dp"
                    android:layout_height="match_parent"
                    android:layout_gravity="center"
                    android:layout_weight="1"
                    android:background="@drawable/grger"
                    android:fadingEdge="none" >

                </FrameLayout>
            </LinearLayout>
        </LinearLayout>

    </TabHost>

    </LinearLayout>

0 个答案:

没有答案