-1

问题已编辑:

我已经在屏幕底部添加了按钮,现在我的列表视图是重叠的按钮,尽管放置了滚动视图。我如何限制我的滚动视图直到按钮。下面是截图和代码

根据建议编辑的代码

    <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:padding="5dp" >

        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true" />

        <View
            android:id="@+id/separator"
            android:layout_width="fill_parent"
            android:layout_height="2dip"
            android:layout_below="@android:id/tabs" />

        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_above="@+id/btnSend"
            android:layout_below="@+id/separator" >

            <!-- Scrollview for message data -->

            <ScrollView
                android:id="@+id/formTab"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:scrollbars="vertical" >

                <LinearLayout
                    android:id="@+id/formLayout"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:orientation="vertical" >

                    <View
                        android:layout_width="fill_parent"
                        android:layout_height="5dip" />
                </LinearLayout>
            </ScrollView>
        </FrameLayout>

        <LinearLayout
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/tabcontent"
                android:layout_alignParentBottom="true" >

                <Button
                    android:id="@+id/add_bt"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentBottom="true"

                    android:layout_weight="1"
                    android:text="Home" />

                <Button
                    android:id="@+id/back_bt"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentBottom="true"

                    android:layout_weight="1"
                    android:text="Messages" />

                <Button
                    android:id="@+id/back_bt"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentBottom="true"

                    android:layout_weight="1"
                    android:text="History" />

                <Button
                    android:id="@+id/back_bt"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentBottom="true"

                    android:layout_weight="1"
                    android:text="Settings" />

                <Button
                    android:id="@+id/back_bt"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentBottom="true"

                    android:layout_weight="1"
                    android:text="Support" />
            </LinearLayout>

    </RelativeLayout>

</TabHost>
4

2 回答 2

0

添加android:layout_below="@+id/tabcontent"到你的Button而不是声明FrameLayout在Button之上,因为XML是从上到下读取的,所以在读取FrameLayout的定义时,还没有Button,这意味着它不能在“之上”它。

于 2013-11-08T14:53:47.553 回答
0

您可能希望使用ListView#addFooterView()在 ListView 底部添加一个视图。

于 2013-11-08T13:53:39.500 回答