Try this in the manifest
android:windowSoftInputMode="stateHidden"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
Try also this code,
android:configChanges="keyboardHidden"
Or try this,
InputMethodManager imm = (InputMethodManager)getSystemService(
Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(myEditText.getWindowToken(), 0);
source
share