当我使用“MultiAutoCompleteTextView”时如何用空格替换逗号

时间:2010-08-14 10:55:53

标签: android android-widget multiautocompletetextview

当我输入几个字母时,我正在使用MultiAutoCompleteTextView做一个简单的程序来提示常用词。

代码:

    ArrayAdapter<String> adapter = new ArrayAdapter<String>(
            this,
            android.R.layout.simple_dropdown_item_1line, 
            ary);
    MultiAutoCompleteTextView textView = (MultiAutoCompleteTextView) findViewById(R.id.editText);
    textView.setAdapter(adapter);

    textView.setTokenizer(new MultiAutoCompleteTextView.CommaTokenizer());

    private String[] ary = new String[] {
       "abc",
       "abcd",
       "abcde",
       "abcdef",
       "abcdefg",
       "hij",
       "hijk",
       "hijkl",
       "hijklm",
       "hijklmn",
    };

现在,当我输入'a'并选择“abcd”但结果变为“abcd”。如何用空格替换逗号?

谢谢!

3 个答案:

答案 0 :(得分:46)

public class SpaceTokenizer implements Tokenizer {

public int findTokenStart(CharSequence text, int cursor) {
int i = cursor;

while (i > 0 && text.charAt(i - 1) != ' ') {
    i--;
}
while (i < cursor && text.charAt(i) == ' ') {
    i++;
}

return i;
}

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

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

return len;
}

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

while (i > 0 && text.charAt(i - 1) == ' ') {
    i--;
}

if (i > 0 && text.charAt(i - 1) == ' ') {
    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 + " ";
    }
}
}
}

答案 1 :(得分:2)

这样做的方法是实现自己的Tokenizer。逗号出现的原因是因为你正在使用CommaTokenizer,它正是为了做到这一点而设计的。如果您需要有关如何实现自己的SpaceTokenizer的参考,也可以查看the source code for CommaTokenizer

答案 2 :(得分:1)

检查我的问题/答案

How to replace MultiAutoCompleteTextView drop down list

你会找到一个SpaceTokenizer类