Android MultiAutoCompleteTextView with custom toke

2019-06-03 06:20发布

I want to create custom tokenizer for @ like as whatspp feature(when open group and write @ then open popup for list and user can select any.also user can remove that string of @ .

I have search lots of things.but i have found twitter like search feature Example like twitter,

but in this,when user can write @ then do not show popup window of list. user can write soemthing after @ then based on typing ,popup window will show search result.

I want to show something like this:

Thanks in advanced.

enter image description here

2条回答
孤傲高冷的网名
2楼-- · 2019-06-03 06:44

I got solution for my question.

i have create own custom view for multiautocompletetextview and add performFiltering method for open popup after @sign.

public class KcsMultiAutoCompleteTextView extends MultiAutoCompleteTextView {
    public KcsMultiAutoCompleteTextView(Context context) {
        super(context);
    }

    public KcsMultiAutoCompleteTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public KcsMultiAutoCompleteTextView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    protected void performFiltering(CharSequence text, int start, int end, int keyCode) {
        if (text.charAt(start) == '@') {
            start = start + 1;
        } else {
            text = text.subSequence(0, start);
            for (int i = start; i < end; i++) {
                text = text + "*";
            }
        }
        super.performFiltering(text, start, end, keyCode);
    }

}
查看更多
再贱就再见
3楼-- · 2019-06-03 07:04

Please see TokenAutoComplete, I hope it help

查看更多
登录 后发表回答