如何在android中的键盘上面添加“保存”和“取消”按钮

时间:2012-04-16 11:38:37

标签: android android-softkeyboard

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

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

或者 任何替代解决方案?

1 个答案:

答案 0 :(得分:0)

您的问题可能与以下内容重复:

how to get Save & Cancel button like in Contacts?

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

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