2

请看这个链接,这个链接有图片 http://groups.google.com/group/android-developers/attach/089583d2b50b1676/original_softKeyboard.jpg?part=4

有可能吗?如果是,请帮助我!

或任何替代解决方案?

4

1 回答 1

0

您的问题可能重复:

如何在通讯录中获得保存和取消按钮?

这是一个页脚视图:你需要做这样的事情:

    <?xml version="1.0" encoding="utf-8"?>


    <LinearLayout android:id="@+id/linearLayout1"
        android:layout_width="fill_parent" android:layout_height="fill_parent"
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical" android:background="#ffffff">
        <RelativeLayout 
            android:layout_width="fill_parent" android:layout_height="50dp">
            <Button "></Button>
        </RelativeLayout>

        <ScrollView android:layout_width="fill_parent"
            android:layout_height="wrap_content" android:layout_weight="1">
            <LinearLayout android:id="@+id/linearLayout1"
                android:layout_width="fill_parent" android:layout_height="wrap_content"
                android:orientation="vertical" android:background="#ffffff">
                 <RelativeLayout android:gravity="bottom"
                    android:paddingTop="40dp" android:layout_width="fill_parent"
                    android:layout_height="fill_parent"
                    android:layout_alignParentBottom="true"
                    android:layout_alignParentLeft="true" android:background="#ffffff"
                    android:paddingBottom="55dp">

                    <Button ></Button>

                    <Button ></Button>

                    <Button></Button>


                    <Button></Button>


                </RelativeLayout>
            </LinearLayout>

        </ScrollView>
<!--for bottom bar -->
        <RelativeLayout android:layout_height="50dp"
            android:gravity="center" android:layout_width="match_parent"
            android:id="@+id/linearLayout2" android:background="#ffffff">
            <Button ></Button>
            <Button ></Button>
            <Button ></Button>
        </RelativeLayout>

</LinearLayout>
于 2012-04-16T12:20:30.390 回答