本文介绍了如何得到保存和放大器;取消像联系人按钮?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果您编辑联系人


  • 保存并放;取消按钮总是停留在顶部,上面摆放着
    虚拟键盘。

  • 的表单元素滚动

我要实现相同的行为。我有很长的形式进入,我想使用户随时保存/取消。

I want to achieve the same behavior. I have very long form to enter and I want to make the User anytime Save/Cancel.

请帮忙。

推荐答案

您可以通过在layout.example添加一个页脚视图做到这一点:

you can do it by adding a footer view in your layout.example :

我使用此布局达到相同的:

I achieve the same using this layout :

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

这篇关于如何得到保存和放大器;取消像联系人按钮?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 20:15