maxxoune Posted June 2, 2011 Share Posted June 2, 2011 J'aurais besoin d'utiliser un équivalent de ceci : android:windowSoftInputMode="stateVisible" mais en ligne de code. Quelqu'un aurait une solution ? Merci Link to comment Share on other sites More sharing options...
pat Posted June 6, 2011 Share Posted June 6, 2011 input = new EditText(this); InputMethodManager keyboard = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); keyboard.showSoftInput(input, 0); Link to comment Share on other sites More sharing options...
maxxoune Posted June 16, 2011 Author Share Posted June 16, 2011 input = new EditText(this); InputMethodManager keyboard = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); keyboard.showSoftInput(input, 0); Merci :) L'effet est pas tout a fait le même, mais ça marche très bien ( j'avais pourtant déjà essayé surement un mauvais paramètre). Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.