I have been developing a game for some time now and have researched all problems I have had and always found the answer. Now I am stuck and need peoples help. I have a List View that is poulated from a HashMap with data that has been downloaded from my database. My problem is with reloading the data. I can do this no problem by calling the data again and refreshing my array list but my search functionality is then broken with index errors when searching the refreshed data. Code attached
final ArrayList<HashMap<String, String>> mylist = new ArrayList<HashMap<String, String>>();
String xml = xmlhandler.getXML();
Document doc = xmlhandler.XMLfromString(xml);
//int numResults = XMLfunctions.numResults(doc);
// if((numResults <= 0)){
// Toast.makeText(Main.this, "No data found", Toast.LENGTH_LONG).show();
//finish();
// }
NodeList nodes = doc.getElementsByTagName("result");
for (int i = 0; i < nodes.getLength(); i++) {
HashMap<String, String> map = new HashMap<String, String>();
Element e = (Element)nodes.item(i);
map.put("id", xmlhandler.getValue(e, "id"));
map.put("name","" + xmlhandler.getValue(e, "name"));
map.put("status", "" + xmlhandler.getValue(e, "status"));
map.put("latitude", xmlhandler.getValue(e, "latitude"));
map.put("longitude", xmlhandler.getValue(e, "longitude"));
map.put("kills","Kills=" + xmlhandler.getValue(e, "kills"));
String targetlatitude=map.get("latitude");
String targetlongitude=map.get("longitude");
Double doubleStr = Double.valueOf(latitude);
Double doubleStr1 = Double.valueOf(longitude);
Double targetlat = Double.valueOf(targetlatitude);
Double targetlng = Double.valueOf(targetlongitude);
double distance;
Location locationA = new Location("point A");
locationA.setLatitude(doubleStr);
locationA.setLongitude(doubleStr1);
Location locationB = new Location("point B");
locationB.setLatitude(targetlat);
locationB.setLongitude(targetlng);
distance = locationA.distanceTo(locationB);
double distance1 = (distance)/8*5/1E3;
double rounded = (double) Math.round(distance1 * 100) / 100;
miles= new Double(rounded).toString();
Log.d("miles",miles);
map.put("miles", miles);
mylist.add(map);
}
//searchResults=OriginalValues initially
searchResults=new ArrayList<HashMap<String,String>>(mylist);
//create the adapter
//first param-the context
//second param-the id of the layout file
//you will be using to fill a row
//third param-the set of values that
//will populate the ListView
final CustomAdapter adapter=new CustomAdapter(this, R.layout.players,searchResults);
//finally,set the adapter to the default
playerListView.setAdapter(adapter);
final Button refresh = (Button) findViewById(R.id.refresh);
refresh.setOnClickListener(new View.OnClickListener(){
public void onClick(View v){
searchResults = new ArrayList<HashMap<String, String>>();
String xml = xmlhandler.getXML();
Document doc = xmlhandler.XMLfromString(xml);
NodeList nodes = doc.getElementsByTagName("result");
for (int i = 0; i < nodes.getLength(); i++) {
HashMap<String, String> map = new HashMap<String, String>();
Element e = (Element)nodes.item(i);
map.put("id", xmlhandler.getValue(e, "id"));
map.put("name","" + xmlhandler.getValue(e, "name"));
map.put("status", "" + xmlhandler.getValue(e, "status"));
map.put("latitude", xmlhandler.getValue(e, "latitude"));
map.put("longitude", xmlhandler.getValue(e, "longitude"));
map.put("kills","Kills=" + xmlhandler.getValue(e, "kills"));
searchResults.add(map);
adapter.notifyDataSetChanged();
}
}
});
final ListView lv = getListView();
lv.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
//@SuppressWarnings("unchecked")
@SuppressWarnings("unchecked")
HashMap<String, String> o = (HashMap<String, String>) lv.getItemAtPosition(position);
String name = (o.get("name"));
String status=(o.get("status"));
curr_lat= o.get("latitude");
curr_long = o.get("longitude");
String dist=(o.get("miles"));
Log.d("dist",dist);
//Double dist1 = Double.valueOf(dist);
double distance = Double.valueOf(dist);
if (status.contains("Offline")){
AlertDialog.Builder helpBuilder = new AlertDialog.Builder(searchusers.this);
helpBuilder.setTitle("User Offline");
helpBuilder.setMessage("This user is not Online. You cannot shoot Offline users");
helpBuilder.setNegativeButton("OK", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
}
});
AlertDialog helpDialog = helpBuilder.create();
helpDialog.show();
}else
if (distance>=(1.2)){
AlertDialog.Builder helpBuilder = new AlertDialog.Builder(searchusers.this);
helpBuilder.setTitle("Out of Range");
helpBuilder.setMessage("This user is out of shooting range for the pistol");
helpBuilder.setNegativeButton("OK", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
}
});
AlertDialog helpDialog = helpBuilder.create();
helpDialog.show();
}else{
Intent intent = new Intent();
intent.setClass(parent.getContext(),ShowMap.class);
intent.putExtra("latitude", latitude );
intent.putExtra("longitude", longitude );
intent.putExtra("targetlatitude", curr_lat );
intent.putExtra("targetlongitude", curr_long );
intent.putExtra("UserName",name);
Log.d("UserName", name + "");
Log.d("clickuser", name);
String loginName = name;
SharedPreferences settings=getSharedPreferences(PREFS_NAME, Context.MODE_WORLD_READABLE);
Editor editor = settings.edit();
editor.putString(NAME, loginName);
editor.commit();
SharedPreferences settings1 = getSharedPreferences("username", 0);
final String testname = settings1.getString("NAME", "");
Log.d("shareduser",testname);
startActivity(intent);
}
}
});
searchBox.addTextChangedListener(new TextWatcher() {
public void onTextChanged(CharSequence s, int start, int before, int count) {
//get the text in the EditText
String searchString=searchBox.getText().toString();
int textLength=searchString.length();
searchResults.clear();
for(int i=0;i<mylist.size();i++)
{
String playerName=mylist.get(i).get("name").toString();
if(textLength<=playerName.length()){
//compare the String in EditText with Names in the ArrayList
if(searchString.equalsIgnoreCase(playerName.substring(0,textLength)))
searchResults.add(mylist.get(i));
}
}
}
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
public void afterTextChanged(Editable s) {
}
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.layout.menu, menu);
return true;
}
//My Custom Adapter
private class CustomAdapter extends ArrayAdapter<HashMap<String, String>> {
public CustomAdapter(Context context, int textViewResourceId, ArrayList<HashMap<String, String>> searchResults) {
//let android do the initializing :)
super(context, textViewResourceId, searchResults); }
//class for caching the views in a row
private class ViewHolder {
TextView name;
TextView status;
TextView kills;
TextView distance;
}
ViewHolder viewHolder;
@Override
public View getView(int position, View convertView, ViewGroup parent) {
if(convertView==null)
{
convertView=inflater.inflate(R.layout.players, null);
viewHolder=new ViewHolder();
//cache the views
//viewHolder.photo=(ImageView) convertView.findViewById(R.id.photo);
viewHolder.name=(TextView) convertView.findViewById(R.id.name);
viewHolder.status=(TextView) convertView.findViewById(R.id.team);
viewHolder.kills=(TextView) convertView.findViewById(R.id.kills);
viewHolder.distance=(TextView) convertView.findViewById(R.id.distance);
//link the cached views to the convertview
convertView.setTag(viewHolder); }
else
viewHolder=(ViewHolder) convertView.getTag();
//int photoId=(Integer) searchResults.get(position).get("photo");
//set the data to be displayed
//viewHolder.photo.setImageDrawable(getResources().getDrawable(photoId));
String stat=(searchResults.get(position).get("status").toString());
viewHolder.name.setText(searchResults.get(position).get("name").toString());
viewHolder.name.setTextColor(Color.BLUE);
viewHolder.kills.setText(searchResults.get(position).get("kills").toString());
viewHolder.kills.setTextColor(Color.YELLOW);
viewHolder.distance.setText(searchResults.get(position).get("miles").toString());
viewHolder.status.setText(searchResults.get(position).get("status").toString());
if ( stat.equals ("Online")){
viewHolder.status.setTextColor(Color.GREEN);
}else{
viewHolder.status.setTextColor(Color.RED);
}
//return the view to be displayed
return convertView;
}
}
If anyone could point me in the right direction I would be very grateful. Kind regards paul