Android +将标签置于前面

时间:2011-02-04 01:50:23

标签: android user-interface tabs

我使用以下XML作为标签,这会在底部显示标签。但是,选项卡与列表重叠,我无法访问任何选项卡功能。图片可能能够更好地解释它。 enter image description here

列表将在选项卡上绘制。我很欣赏任何将标签放在前面的建议 XML:

![<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:orientation="vertical"
            android:layout_width="fill_parent" android:layout_height="fill_parent"
            >
            <View android:layout_width="fill_parent" android:layout_height="0.5dip"
                android:background="#000"/>
            <TabWidget android:id="@android:id/tabs"
                android:layout_width="fill_parent" android:layout_height="wrap_content"
                android:layout_marginLeft="0dip" android:layout_marginRight="0dip" 
                 android:layout_alignParentBottom="true"
                />
            <View android:layout_width="fill_parent" android:layout_height="2dip"
                android:background="#696969" />
            <View android:layout_width="fill_parent" android:layout_height="2dip"
                android:background="#000" />
            <FrameLayout android:id="@android:id/tabcontent"
                android:layout_width="fill_parent" android:layout_height="fill_parent" />
        </RelativeLayout>
    </TabHost>][1]

2 个答案:

答案 0 :(得分:1)

您必须在listView中设置填充,如下所示: android:paddingBottom="65dip"。 这样,您的列表将不会与tabhost重叠。

答案 1 :(得分:0)

Surya sol为此你需要设置lsitview高度,这样它就不会与bootm上的标签重叠,只为它设置固定大小。


<Listview
android:layoutheight="some fixed value">

如果你动态填写使用


ln.setLayoutParams(new LayoutParams(width,height));