Android输入框被键盘遮挡

Android输入框被键盘遮挡解决办法是在整个页面配置文件中,在LinearLayout布局外加入

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

android:orientation="vertical" android:layout_width="fill_parent"

android:layout_height="fill_parent" android:background="@drawable/backgroundshape">

这样在系统自动调用虚拟键盘时,整个页面布局会发生变化,分为两个部分,一个是虚拟键盘显示的部分,一个是你自己的页面。

相关推荐