底部标签是隐藏的

时间:2017-06-30 06:47:39

标签: android

我想在屏幕底部设计4个标签,但我的问题是标签隐藏在屏幕底部。但是在空活动中会显示标签。看图像。 this image is showing tabs with and without activity

here is my code, xml and java

1 个答案:

答案 0 :(得分:0)

尝试设置属性 android:layout_above="@id/tabs"到FrameLayout

修改

<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/tabhost"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true" />

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