I am trying to make a listView that has an editText and when you type something it filters all the contents to the the names with that contains the text the user typed and then you press it to show more information about this name. The filter works fine but the since in the onItemClickListener each case is defined by it's number ex:
case 0:
....
break;
case 1:
....
break;
case 2:
....
break;
when the user types something and the names get filtered, for example case 45 will become case 0 and it will open the information of the case 0 instead of case 45, so how can I have a fixed name for them like when in the onClick method when you type the id of the button.
Thanks
My code:
final EditText inputSearch = (EditText) view.findViewById(R.id.inputSearch);
list = (GridView) view.findViewById(R.id.gv);
final ArrayAdapter<String> dataAdapter=new ArrayAdapter<String>(getActivity().getBaseContext(),R.layout.gridview_design,R.id.name, heartlessNames);
list.setAdapter(dataAdapter);
inputSearch.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s,int start,int before,int count){
updateText();
}
@Override public void beforeTextChanged(CharSequence s,int start,int count,int after){
updateText();
}
@Override public void afterTextChanged(Editable s){
updateText();
}
private void updateText(){
dataAdapter.getFilter().filter(inputSearch.getText().toString());
}
});
list.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View v,
int position, long id) {
switch(position){
case 0:
sp.play(soundId, 1, 1, 0, 0, 1);
startActivity(new Intent(getActivity().getBaseContext(), shadow.class));
getActivity().overridePendingTransition(R.animator.push_left_in, R.animator.push_left_out);
break;
case 1:
sp.play(soundId, 1, 1, 0, 0, 1);
startActivity(new Intent(getActivity().getBaseContext(), soldier_kh2fm.class));
getActivity().overridePendingTransition(R.animator.push_left_in, R.animator.push_left_out);
break;
}
}
});
return view;
}
}
Say you have a ListView in your Activity, we will call it
listView
and it will likely be setup something like thisAt some point you will build your adapter and set it to your listView (
listView.setAdapter(adapter);
). Notice adapter and listView are class variables so they can be used throughout our entire class. Now your listView should be ready to go. You have told us,"The filter works fine"
, so I am going to assume at this point you just need to manage handling clicking on an item, that is done withWhere
MyDataObject
is replaced with whatever the type is in your list that your adapter is pulling from. As you can see you use your adapter and the position you clicked on to actually get your data from that position. Your list itself will manage data positions, no need for you to do that.EDIT
Based on your code, I would create a list object that has a reference to what you need, and still let your adapter manage everything.
Then change your ArrayAdapter to ArrayAdapter and in your getView method of your adapter do set your values, something like
This way when in onItemClickListener you can just do
The idea of an adapter/list view is to manage your data in an organized manner. When you try to take control over that you are just asking for trouble. You would have to sync your methods/data with your adapter which is very difficult. Give you adapter all of the data it may need to represent that position of data and then when you click on that position use the data you get. That is the whole point.