Est-il possible de détecter le moment où la touche de clavier à l'écran a été pressé ?
Réponses
Trop de publicités?Oui, il est possible:
editText = (EditText) findViewById(R.id.edit_text);
editText.setOnEditorActionListener(new OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if (actionId == EditorInfo.IME_ACTION_DONE) {
// do your stuff here
}
return false;
}
});
Ganapathy
Points
2888
Cochez cette
http://android-developers.blogspot.com/2009/04/updating-applications-for-on-screen.html
imeOptions vous devez modifier.
http://developer.android.com/reference/android/widget/TextView.html#setImeOptions(int)