La respuesta proporcionada por @Andreas Rudolph contiene un error crítico y no debe utilizarse. El código provoca un IndexOutOfBoundsException
cuando pasa el texto dentro del EditText
que contiene varios caracteres de nueva línea. Esto es causado por el tipo de bucle que se utiliza, el objeto Editable
llamará al método afterTextChanged
tan pronto como su contenido cambie (reemplazar, eliminar, insertar).
código correcto:
edittext.addTextChangedListener(new TextWatcher() {
public void onTextChanged(CharSequence s, int start, int before, int count) {
}
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
public void afterTextChanged(Editable s) {
/*
* The loop is in reverse for a purpose,
* each replace or delete call on the Editable will cause
* the afterTextChanged method to be called again.
* Hence the return statement after the first removal.
* http://developer.android.com/reference/android/text/TextWatcher.html#afterTextChanged(android.text.Editable)
*/
for(int i = s.length()-1; i >= 0; i--){
if(s.charAt(i) == '\n'){
s.delete(i, i + 1);
return;
}
}
}
});
sólo tiene que añadir androide: inputType = "textPersonName" al EditarTexto que va a parar de presionar enter – Nepster