我正在尝试从我的数据库中检索所有成员数据,然后将其显示在列表视图上并且它能够工作。
现在我正在尝试搜索特定成员,并且我设法检索了记录(登录到 logcat),但它没有相应地刷新我的列表视图。
这是我用来检索搜索记录的列表视图代码。
SimpleAdapter simpleAdapter = new SimpleAdapter(Search.this, productsList, R.layout.list_item, new String[] {TAG_COMPANY},
new int[] { R.id.name});
lv = (ListView) findViewById(R.id.lst_name);
lv.setAdapter(simpleAdapter);