我搜索了其他解决方案,但是没有发现任何与我的情况类似的东西,起初我试图获取文本视图和过滤器的内容但是没有成功请帮助。所以我在这里创建了一个listview,它由三个textviews充实,形式像一个表,每个textview是一个列,数据是从服务器动态添加的。如何根据用户搜索过滤内容。 这是下面的代码。
MainActivity.java
public class MainActivity extends AppCompatActivity {
private void showJSON2(String response){
String id="";
String name="";
String date_from="";
String date_to="";
try {
JSONObject jsonObject = new JSONObject(response);
JSONArray result = jsonObject.getJSONArray(JSON_ARRAY2);
ListView listView = (ListView) findViewById(R.id.list_view);
list = new ArrayList<HashMap<String, String>>();
for (int i=0; i<result.length(); i++) {
JSONObject notice = result.getJSONObject(i);
id = notice.getString(KEY_ID);
name = notice.getString(KEY_NAME);
date_from = notice.getString(KEY_DATE_FROM);
date_to = notice.getString(KEY_DATE_TO);
HashMap<String, String> temp= new HashMap<String, String>();
temp.put(FIRST_COLUMN, id);
temp.put(SECOND_COLUMN, name);
temp.put(THIRD_COLUMN, date_from);
temp.put(FOURTH_COLUMN, date_to);
list.add(temp);
}
ListViewAdapters adapter = new ListViewAdapters(this, list);
listView.setAdapter(adapter);
listView.setOnItemClickListener(new AdapterView.OnItemClickListener()
{
@Override
public void onItemClick(AdapterView<?> parent, final View view, int position, long id)
{
int pos=position+1;
Toast.makeText(MainActivity.this, Integer.toString(pos)+" Clicked", Toast.LENGTH_SHORT).show();
}
});
} catch (JSONException e) {
e.printStackTrace();
}
}
}
ListViewAdapters.java -
public class ListViewAdapters extends BaseAdapter{
public ListViewAdapters(Activity activity,ArrayList<HashMap<String, String>> list){
super();
this.activity=activity;
this.list=list;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
// TODO Auto-generated method stub
LayoutInflater inflater=activity.getLayoutInflater();
if(convertView == null){
convertView=inflater.inflate(R.layout.colmn_row, null);
txtFirst=(TextView) convertView.findViewById(R.id.name);
txtSecond=(TextView) convertView.findViewById(R.id.gender);
txtThird=(TextView) convertView.findViewById(R.id.age);
txtFourth=(TextView) convertView.findViewById(R.id.status);
}
HashMap<String, String> map=list.get(position);
txtFirst.setText(map.get(FIRST_COLUMN));
txtSecond.setText(map.get(SECOND_COLUMN));
txtThird.setText(map.get(THIRD_COLUMN));
txtFourth.setText(map.get(FOURTH_COLUMN));
return convertView;
}
}
答案 0 :(得分:2)
在MainActivity.java中,
public class MainActivity extends AppCompatActivity {
ArrayList<HashMap<String, String>> list = new ArrayList<>();
ListViewAdapters adapter;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_default);
adapter = new ListViewAdapters(this, list);
listView.setAdapter(adapter);
}
private void showJSON2(String response) {
...
list.clear();
...
list.add(temp);
...
// ListViewAdapters adapter = new ListViewAdapters(this, list);
// listView.setAdapter(adapter);
adapter.notifyDataSetChanged();
...
}
}
在适配器类中,
public class ListViewAdapters extends BaseAdapter {
ArrayList<HashMap<String, String>> origList = new ArrayList<>();
public ListViewAdapters(Activity activity,ArrayList<HashMap<String, String>> list) {
super();
this.activity=activity;
this.list=list;
this.origList=list;
}
...
void filter(String filterString) {
list = new ArrayList<>();
for (HashMap<String, String> item: origList) {
// use your own logic to filter
if (itemShouldBeAdded)
list.add(item); // add if item is inside filter
}
notifyDataSetChanged();
}
void cancelFilter() {
list = origList;
notifyDataSetChanged();
}
}
现在,要过滤,请调用函数过滤器。
adapter.filter("some_string");
取消过滤器,
adapter.cancelFilter();
答案 1 :(得分:1)
我正在使用这种方式根据用户的输入过滤我的列表。
private void setFilter(EditText et_search_bar, ArrayList<String> list, OnListUpdated onListUpdated) {
if (et_search_bar != null) {
TextWatcher textWatcher;
textWatcher = new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
// TODO Auto-generated method stub
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
// TODO Auto-generated method stub
}
@Override
public void afterTextChanged(Editable s) {
// filter your list from your input
if (!previousValue.equalsIgnoreCase(s.toString())) {
if (!TextUtils.isEmpty(s.toString())) {
previousValue = s.toString();
ArrayList<String> temp = new ArrayList<>();
for (String bookmarkBean : list) {
//or use .contains(text)
if (bookmarkBean.toLowerCase().contains(s.toString())) {
temp.add(bookmarkBean);
}
}
//update recyclerview
if (onListUpdated != null) {
onListUpdated.onListFiltered(temp);
}
} else onListUpdated.onListFiltered(filterBean);
}
}
};
et_search_bar.addTextChangedListener(textWatcher);
}
}
和
public interface OnListUpdated {
void onListFiltered(ArrayList<String> list);}
setFilter(et_search_bar, filterBean, new OnListUpdated() {
@Override
public void onListFiltered(ArrayList<String> list) {
// notify your adapter
}
});