gpt4 book ai didi

Android listview edittext过滤空格按钮?

转载 作者:行者123 更新时间:2023-11-29 16:16:50 24 4
gpt4 key购买 nike

我创建了一个过滤器 ListView ,用户将通过 edittext 输入内容,结果在 ListView 中过滤。

代码运行良好,但每当我按下空格键时, ListView 就会消失。如何在不关闭 ListView 内容的情况下在搜索输入中添加空格??

这是我当前的代码:

myListview.setTextFilterEnabled(true);

edNearBy.addTextChangedListener(new TextWatcher() {

public void onTextChanged(CharSequence s, int start, int before, int count) {
// TODO Auto-generated method stub

}

public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
// TODO Auto-generated method stub

}

public void afterTextChanged(Editable s) {
// TODO Auto-generated method stub

NearByActivity.this.aa.getFilter().filter(s);

}
});

最佳答案

这样做:

public void afterTextChanged(Editable s) {
String st = s.toString().trim();
NearByActivity.this.aa.getFilter().filter(st);
}

但不要这样过滤,here is the correct one .

关于Android listview edittext过滤空格按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8722728/

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