@Mention使用Multiautocompletetextview

时间:2015-11-23 09:43:34

标签: android arraylist adapter autocompletetextview

我想做什么

我想在聊天活动中提及人和群组。当用户输入@我想要填充不包含用户和频道的列表 所以他可以提到人和渠道

我做了什么

我从这个问题中获得了帮助Android: Autocomplete TextView Similar To The Facebook App 这里我已经包含了我的代码

1.Arraylist拥有用户

   ArrayList<People> users = new ArrayList<User>();
        for (People user : SocketSingleton.userMap.values()) {
            if (user.getId() != loggedUserId) {
                users.add(user);
            }
        }

2.Arraylist有组列表

ArrayList<Group> groups = new ArrayList<Group>();
        for (Group channel : SocketSingleton.listgroups.values()) {
            groups.add(channel);
        }

3.视图适配器

final UserAdapter Adapter = new UserAdapter(getActivity(), R.layout.all_user_list_item, users);

final GroupAdapter Adapter1 = new GroupAdapter(getActivity(), R.layout.all_groups_list_item, Groups);

4.MultiAutocompletetextview

textinput = (MultiAutoCompleteTextView) view.findViewById(R.id.message_input);
        textinput.setAdapter(Adapter);
        textinput.setThreshold(0);

        textinput.setTokenizer(new MultiAutoCompleteTextView.Tokenizer() {

            @Override
            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 + " ";
                    }
                }
            }

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

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

                //Check if token really started with @, else we don't have a valid token
                if (i < 1 || text.charAt(i - 1) != '@') {
                    return cursor;
                }

                return i;
            }

            @Override
            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;
            }
        });
        textinput.addTextChangedListener(new TextWatcher() {

            @Override
            public void onTextChanged(CharSequence s, int start, int before, int count) {
                Layout layout = textinput.getLayout();
                int pos = textinput.getSelectionStart();
                int line = layout.getLineForOffset(pos);
                int baseline = layout.getLineBaseline(line);

                int bottom = textinput.getHeight();

                textinput.setDropDownVerticalOffset(baseline - bottom);

            }

            @Override
            public void beforeTextChanged(CharSequence s, int start, int count, int after) {
            }

            @Override
            public void afterTextChanged(Editable s) {
            }
        });
        textinput.setOnEditorActionListener(new TextView.OnEditorActionListener() {
            @Override
            public boolean onEditorAction(TextView v, int id, KeyEvent event) {
                if (id == R.id.send || id == EditorInfo.IME_NULL) {
                    messageSend();
                    return true;
                }
                return false;
            }
        });

我有问题

使用此代码我只能提及人。我只能为自动完成tectview设置adapter1或adapter2。所以它只显示用户或组。 我想在单个适配器中显示所有列表,以便用户可以提及人员和组 我是新手,请帮助我找到方法

1 个答案:

答案 0 :(得分:0)

MultiAutoCompleteTextView的多种数据类型没有内置支持。但是,有几个开源库允许您这样做。 我在我正在开发的项目中有相同的要求,这是我们的开源解决方案,请随时查看: https://github.com/Teamwork/android-multiautocomplete

您可以通过以下方式实现这一目标:

MultiAutoComplete autoComplete = new MultiAutoComplete.Builder()
    ...
    .addTypeAdapter(typeAdapter1)
    .addTypeAdapter(typeAdapter2)
    .build();

您还可以指定要为每个类型适配器使用的过滤器和句柄类型('@'或'#'或任何其他)。