Desde el tutorial androide:tipo de EditarTexto, cómo hacer desaparecer el teclado
pass_text.setOnKeyListener(new OnKeyListener() {
public boolean onKey(View v, int keyCode, KeyEvent event) {
// If the event is a key-down event on the "enter" button
if ((event.getAction() == KeyEvent.ACTION_DOWN)
&& (keyCode == KeyEvent.KEYCODE_ENTER)) {
// Perform action on key press
return true;
}
return false;
}
});
}
cuando tecleo en EditarTexto, tiene un teclado aparecen en el cuadro. Quiero saber después de Enter. Cómo hacer que el teclado salga del marco, excepto hacer clic en Atrás.
Gracias
Gracias por su respuesta. – Yoo