软键盘挡住EditText

第一种方案

:<activity  android:name="com.disanxue.activity.LoginActivity" 

            android:screenOrientation="portrait"
            android:windowSoftInputMode="stateHidden"   
            android:configChanges="orientation|keyboardHidden">  </activity>


<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <LinearLayout 
   android:layout_width="fill_parent"
   android:layout_height="fill_parent"
   android:orientation="vertical" >


 </LinearLayout>
</ScrollView

猜你喜欢

转载自blog.csdn.net/he3527/article/details/78356815