Android e o CommaTokenizer

Eu preciso de um Tokenizer (para o AutoCompleteTextview) que pode fazer o seguinte:

Duas palavras devem ser reconhecidas como tal quando separadas por um caractere em brancoDuas palavras também devem ser reconhecidas como tal quando separadas por uma nova linha (pressione "Enter")

1) está funcionando, mas como posso realizar

public class SpaceTokenizer implements Tokenizer {

@Override
public int findTokenStart(CharSequence text, int cursor) {
    int i = cursor; 
    while (i > 0 && (text.charAt(i - 1) != ' ')) {
        i--;
    }
    while (i < cursor && (text.charAt(i) == ' ' || text.charAt(i) == '\n')) {
        i++;
    }   
    return i;
}

@Override
public int findTokenEnd(CharSequence text, int cursor) {
    int i = cursor;
    int len = text.length();

    while (i < len) {
        if (text.charAt(i) == ' ' || text.charAt(i) == '\n') {
            return i;
        } else {
            i++;
        }
    }   
    return len;
}

@Override
public CharSequence terminateToken(CharSequence text) {
    int i = text.length();

    while (i > 0 && (text.charAt(i - 1) == ' ' || text.charAt(i - 1) == '\n')) {
        i--;
    }   
    if (i > 0 && (text.charAt(i - 1) == ' ' || text.charAt(i - 1) == '\n')) {
        return text;
    } else {
        if (text instanceof Spanned) {
            SpannableString sp = new SpannableString(text + " ");
            TextUtils.copySpansFrom((Spanned) text, 0, text.length(),
                    Object.class, sp, 0);
            return sp;
        } else {
            return text + " ";
        }
    }
}
}

questionAnswers(2)

yourAnswerToTheQuestion