Ver Mensaje Individual
  #2  
Viejo 12/03/12, 22:13:21
Array

[xs_avatar]
kriogeN kriogeN no está en línea
Colaborador/a
· Votos compra/venta: (1)
 
Fecha de registro: oct 2010
Localización: Murcia
Mensajes: 4,637
Modelo de smartphone: Samsung Galaxy S7 Edge SM-G935F
Tu operador: Vodafone
Para hacer desaparecer el teclado:

InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT _METHOD_SERVICE);
imm.hideSoftInputFromWindow(elEditText.getWindowTo ken(), 0);

Para que al escribir algo en un EditText se ejecute un evento:

elEditText.addTextChangedListener(new TextWatcher(){
public void afterTextChanged(Editable s) {
............
}
});
Responder Con Cita