如何在ListActivity中的屏幕底部添加多个按钮

时间:2013-11-08 13:50:46

标签: android button

问题编辑:

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

根据建议编辑的代码

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

2 个答案:

答案 0 :(得分:0)

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

答案 1 :(得分:0)

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