搜索无法在ListView Android中工作

时间:2018-06-21 16:46:25

标签: android listview search

我用我的api内容创建了一个列表视图,现在我需要搜索列表视图。我尝试过,但结果为空。

Parsemateriallist pj = new Parsemateriallist(sparemateriallist);
    pj.parseJSON();
    cl = new Setmateriallist(this, Parsemateriallist.item,Parsemateriallist.brand,Parsemateriallist.rate,Parsemateriallist.id);
    list.setAdapter(cl);

我正在如上所述将适配器设置为mu listview“ list”。 Parsemateriallist是解析类。像下面一样,我尝试创建搜索,但结果不正确。

search.addTextChangedListener(new TextWatcher() {

        @Override
        public void onTextChanged(CharSequence cs, int arg1, int arg2, int arg3) {
            // When user changed the Text
            Addsparematerials.this.cl.getFilter().filter(cs.toString());
        }

        @Override
        public void beforeTextChanged(CharSequence arg0, int arg1, int arg2,
                                      int arg3) {
            // TODO Auto-generated method stub

        }

        @Override
        public void afterTextChanged(Editable arg0) {
            // TODO Auto-generated method stub
        }
    });

我被困在这部分。如有任何正面回应,请先感谢。

0 个答案:

没有答案