屏幕底部控件始终在软键盘顶端

来源:互联网 发布:纵横九州神羽进阶数据 编辑:程序博客网 时间:2024/05/17 13:41
 
<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"              android:layout_width="match_parent"              android:layout_height="match_parent">    <ScrollView        android:layout_width="match_parent"        android:layout_height="match_parent">        <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:text="按钮"        android:layout_alignParentBottom="true"        android:background="#aaccee"        android:layout_margin="5dp"/></RelativeLayout>

1 0