Edittext弹出键盘移动屏幕底部Button的实现

来源:互联网 发布:看电视的软件大全 编辑:程序博客网 时间:2024/05/18 11:46

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >


    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:orientation="vertical" >


        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint="输入用户名" />
    </ScrollView>


    <Button
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_alignParentBottom="true"
        android:text="确定" />

</LinearLayout>


1 0