gpt4 book ai didi

安卓 : AutoCompleteTextView and TextWatcher

转载 作者:行者123 更新时间:2023-12-05 00:07:09 29 4
gpt4 key购买 nike

我正在尝试让 TextWatcher 与 AutoCompleteTextView 一起工作,但遇到了一些问题。我面临的问题是,当我开始输入文本时,如果数据输入的长度只有一个字符,我在 AutoCompleteTextView 中什么也得不到。

例如。如果我输入 1,我应该得到一个包含 1、10、101 等的列表。但是,1 从未出现在列表中。如何显示建议?

        final AutocompleteCustomArrayAdapter adapter = new AutocompleteCustomArrayAdapter(context, R.layout.actv, new ArrayList<String>(), null);
textView.setAdapter(adapter);

textView.addTextChangedListener(new TextWatcher() {

@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
adapter.notifyDataSetChanged();
}

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

@Override
public void afterTextChanged(Editable s) {

}
});

最佳答案

您是否在您的 TextView 中将 android:completionThreshold 设置为 1

关于安卓 : AutoCompleteTextView and TextWatcher,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25902540/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com