如何在布局中考虑tabwidget高度?

时间:2012-09-04 16:06:58

标签: android

我使用制表符切换了两个活动。我遇到的问题是我的活动内容没有正确调整大小以考虑选项卡小部件的高度(因此活动内容显示在选项卡后面被剪裁)。我在底部有标签。我尝试过使用标签布局等,但没有运气。

设计布局(用于标签内容活动)是否有办法解释android中的标签高度?我的猜测是,在将其添加到选项卡主机后,我为活动设计布局的方式太高了。这在iOS上是可行的,但不知道如何在Android上做到这一点。有什么想法吗?

    <?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="match_parent"
    android:layout_height="match_parent" >

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

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

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

</TabHost>

1 个答案:

答案 0 :(得分:0)

一个非常简单的解决方案是使用固定大小的标签,例如

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