在AndroidManifest.xml里面 
选择那个acitivity, 把他的window soft input mode设置成stateHidden和 
adjustUnspecified 如: 
Java代码 <activity 
android:name=".ClientSearchViewActivity"
android:label="@string/app_name" 
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustUnspecified|stateHidden"
android:configChanges="orientation|keyboardHidden">
</activity>这样激活这个activity时 就不会弹出软键盘了,手动点击输入框才会弹出。