J'ai un Edittext avec android:windowSoftInputMode="stateVisible"
dans Manifest. Maintenant, le clavier s'affiche lorsque je démarre l'activité. Comment le cacher? Je ne peux pas utiliser android:windowSoftInputMode="stateHidden
car lorsque le clavier est visible, réduisez l'application et reprenez-la, le clavier doit être visible. J'ai essayé avec
InputMethodManager imm = (InputMethodManager) getSystemService(INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(), 0);
Mais cela n'a pas fonctionné.
android:windowSoftInputMode="stateHidden"