Android Activity 阻止软键盘自动弹出


在AndroidManifest.xml里面 
选择那个acitivity, 把他的window soft input mode设置成stateHidden和 
adjustUnspecified 
  1. <activity     
  2.             android:name=".ClientSearchViewActivity"    
  3.             android:label="@string/app_name"     
  4.             android:screenOrientation="portrait"    
  5.             android:windowSoftInputMode="adjustUnspecified|stateHidden"    
  6.             android:configChanges="orientation|keyboardHidden">    
  7.         </activity>    

相关内容